Convert tbf->control_ts to be a gprs_rlcmac_pdch*

This allows having full information on the control TS easily reachable
(like TRX ofthe PDCH), and makes it easy to compare TS by simply
matching the pointer address.

Change-Id: I6a97b6528b2f9d78dfbca8fb97ab7c621f777fc7
diff --git a/src/pcu_vty_functions.cpp b/src/pcu_vty_functions.cpp
index facc34c..5cdfda3 100644
--- a/src/pcu_vty_functions.cpp
+++ b/src/pcu_vty_functions.cpp
@@ -68,7 +68,7 @@
 		state_flags & (1 << GPRS_RLCMAC_FLAG_CCCH),
 		state_flags & (1 << GPRS_RLCMAC_FLAG_PACCH),
 		first_common_ts ? first_common_ts->ts_no : -1,
-		tbf->control_ts,
+		tbf->control_ts ? tbf->control_ts->ts_no : -1,
 		tbf->ms_class(),
 		ms_egprs_ms_class(ms),
 		VTY_NEWLINE);
diff --git a/src/pdch.cpp b/src/pdch.cpp
index c7d92c1..cc93cfe 100644
--- a/src/pdch.cpp
+++ b/src/pdch.cpp
@@ -836,10 +836,11 @@
 	 * sent to tbf_fsm which will call tbf_assign_control_ts(),
 	 * effectively setting back control_ts to tbf->initial_common_ts.
 	 */
-	LOGPTBF(new_ul_tbf, LOGL_INFO, "change control TS %d -> %d until assignment is complete.\n",
-		new_ul_tbf->control_ts, ts_no);
+	LOGPTBF(new_ul_tbf, LOGL_INFO, "Change control TS %s -> %s until assignment is complete.\n",
+		new_ul_tbf->control_ts ? pdch_name_buf(new_ul_tbf->control_ts, buf, sizeof(buf)) : "(none)",
+		pdch_name(this));
 
-	new_ul_tbf->control_ts = ts_no;
+	new_ul_tbf->control_ts = this;
 	/* schedule uplink assignment */
 	osmo_fsm_inst_dispatch(new_ul_tbf->ul_ass_fsm.fi, TBF_UL_ASS_EV_SCHED_ASS, NULL);
 return_unref:
@@ -1312,7 +1313,7 @@
 	 * Get rid of them too: */
 	llist_for_each_entry_safe(pos, pos2, &pdch->trx->ul_tbfs, list) {
 		struct gprs_rlcmac_ul_tbf *ul_tbf = tbf_as_ul_tbf((struct gprs_rlcmac_tbf *)pos->entry);
-		if (ul_tbf->control_ts == pdch->ts_no)
+		if (ul_tbf->control_ts == pdch)
 			tbf_free(ul_tbf);
 	}
 }
diff --git a/src/tbf.cpp b/src/tbf.cpp
index 90e2be6..0af738d 100644
--- a/src/tbf.cpp
+++ b/src/tbf.cpp
@@ -90,7 +90,7 @@
 gprs_rlcmac_tbf::gprs_rlcmac_tbf(struct gprs_rlcmac_bts *bts_, GprsMs *ms, gprs_rlcmac_tbf_direction dir) :
 	direction(dir),
 	trx(NULL),
-	control_ts(TBF_TS_UNSET),
+	control_ts(NULL),
 	fT(0),
 	num_fT_exp(0),
 	upgrade_to_multislot(false),
@@ -217,8 +217,8 @@
 	 * confirmation from the MS and goes through the FLOW state. Hence, we
 	 * may have ULC pollings ongoing and we need to make sure we drop all
 	 * reserved nodes there: */
-	if (tbf->control_ts != TBF_TS_UNSET && !tbf->pdch[tbf->control_ts])
-		pdch_ulc_release_tbf(tbf->trx->pdch[tbf->control_ts].ulc, tbf);
+	if (tbf->control_ts)
+		pdch_ulc_release_tbf(tbf->control_ts->ulc, tbf);
 
 	/* Now simply detach from all attached PDCHs */
 	for (ts = 0; ts < 8; ts++) {
@@ -279,15 +279,18 @@
 
 void tbf_assign_control_ts(struct gprs_rlcmac_tbf *tbf)
 {
+	char buf[128];
 	struct gprs_rlcmac_pdch *first_common = ms_first_common_ts(tbf_ms(tbf));
 	OSMO_ASSERT(first_common);
-	if (tbf->control_ts == TBF_TS_UNSET)
-		LOGPTBF(tbf, LOGL_INFO, "Setting Control TS %d\n",
-			first_common->ts_no);
-	else if (tbf->control_ts != first_common->ts_no)
-		LOGPTBF(tbf, LOGL_INFO, "Changing Control TS %d -> %d\n",
-			tbf->control_ts, first_common->ts_no);
-	tbf->control_ts = first_common->ts_no;
+
+	if (!tbf->control_ts)
+		LOGPTBF(tbf, LOGL_INFO, "Setting Control TS %s\n",
+			pdch_name(first_common));
+	else if (tbf->control_ts != first_common)
+		LOGPTBF(tbf, LOGL_INFO, "Changing Control TS %s -> %s\n",
+			pdch_name_buf(tbf->control_ts, buf, sizeof(buf)),
+			pdch_name(first_common));
+	tbf->control_ts = first_common;
 }
 
 void gprs_rlcmac_tbf::n_reset(enum tbf_counters n)
@@ -461,8 +464,8 @@
 	int rc;
 	if (!tbf_is_control_ts(this, &this->trx->pdch[ts])) {
 		LOGPTBF(this, LOGL_DEBUG, "Polling cannot be "
-			"scheduled in this TS %d (first control TS %d)\n",
-			ts, control_ts);
+			"scheduled in this TS %d (control TS %s)\n",
+			ts, pdch_name(control_ts));
 		return -EINVAL;
 	}
 
@@ -710,8 +713,8 @@
 	struct gprs_rlcmac_pdch *first_common;
 
 	if (direction == GPRS_RLCMAC_DL_TBF) {
-		if (control_ts < 8)
-			slots |= 1 << control_ts;
+		if (control_ts)
+			slots |= 1 << control_ts->ts_no;
 		first_common = ms_first_common_ts(tbf_ms(this));
 		if (first_common)
 			slots |= 1 << first_common->ts_no;
@@ -853,7 +856,7 @@
 
 bool tbf_is_control_ts(const struct gprs_rlcmac_tbf *tbf, const struct gprs_rlcmac_pdch *pdch)
 {
-	return tbf->control_ts == pdch->ts_no;
+	return tbf->control_ts == pdch;
 }
 
 bool tbf_can_upgrade_to_multislot(const struct gprs_rlcmac_tbf *tbf)
diff --git a/src/tbf.h b/src/tbf.h
index 29f0d6f..a02b8e2 100644
--- a/src/tbf.h
+++ b/src/tbf.h
@@ -112,7 +112,6 @@
 #define GPRS_RLCMAC_FLAG_TO_DL_ACK	3 /* DL TBF: Failed to receive last polled DL ACK/NACK */
 #define GPRS_RLCMAC_FLAG_TO_MASK	0xf0 /* timeout bits */
 
-#define TBF_TS_UNSET 0xff
 #define TBF_TFI_UNSET 0xff
 
 #define T_START(tbf, t, T, r, f) tbf->t_start(t, T, r, f, __FILE__, __LINE__)
@@ -219,7 +218,7 @@
 
 	enum gprs_rlcmac_tbf_direction direction;
 	struct gprs_rlcmac_trx *trx;
-	uint8_t control_ts; /* timeslot control messages and polling */
+	struct gprs_rlcmac_pdch *control_ts; /* timeslot control messages and polling */
 	struct gprs_rlcmac_pdch *pdch[8]; /* list of PDCHs allocated to TBF */
 
 	gprs_llc m_llc;
diff --git a/tests/alloc/AllocTest.cpp b/tests/alloc/AllocTest.cpp
index 75bf145..21fa6f2 100644
--- a/tests/alloc/AllocTest.cpp
+++ b/tests/alloc/AllocTest.cpp
@@ -183,8 +183,8 @@
 	for (size_t i = 0; i < ARRAY_SIZE(tbf->pdch); ++i)
 		if (tbf->pdch[i])
 			printf("PDCH[%zu] is used for %s\n", i, dir);
-	printf("PDCH[%d] is control_ts for %s\n", tbf->control_ts, dir);
-	printf("PDCH[%d] is first common for %s\n", first_common ? first_common->ts_no : -1, dir);
+	printf("%s is control_ts for %s\n", tbf->control_ts ? pdch_name(tbf->control_ts) : "(none)", dir);
+	printf("%s is first common for %s\n", first_common ? pdch_name(first_common) : "(none)", dir);
 }
 
 #define ENABLE_PDCH(ts_no, enable_flag, trx)	\
diff --git a/tests/alloc/AllocTest.err b/tests/alloc/AllocTest.err
index 61b5b2c..e4cefff 100644
--- a/tests/alloc/AllocTest.err
+++ b/tests/alloc/AllocTest.err
@@ -1,323 +1,323 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
@@ -522,7 +522,7 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -530,72 +530,72 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
@@ -649,7 +649,7 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -657,645 +657,645 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
@@ -1692,7 +1692,7 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -1700,142 +1700,142 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
@@ -1931,7 +1931,7 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -1939,12 +1939,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -1955,12 +1955,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -1973,12 +1973,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -1989,12 +1989,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2005,12 +2005,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -2023,12 +2023,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2039,12 +2039,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2055,12 +2055,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -2073,12 +2073,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2089,12 +2089,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2105,12 +2105,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -2123,12 +2123,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2139,12 +2139,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2155,12 +2155,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -2173,12 +2173,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2189,12 +2189,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2205,12 +2205,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -2223,12 +2223,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2239,12 +2239,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2255,12 +2255,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -2273,12 +2273,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2289,12 +2289,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2305,12 +2305,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -2323,12 +2323,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2339,12 +2339,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2355,12 +2355,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -2373,12 +2373,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2389,12 +2389,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2405,12 +2405,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -2423,12 +2423,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2439,12 +2439,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2455,12 +2455,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -2473,12 +2473,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2489,12 +2489,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2505,12 +2505,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -2523,12 +2523,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2539,12 +2539,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2555,12 +2555,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -2573,12 +2573,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2589,12 +2589,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2605,12 +2605,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -2623,12 +2623,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 0e, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2639,12 +2639,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2655,12 +2655,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -2673,12 +2673,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 1e, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2689,12 +2689,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2705,12 +2705,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -2723,12 +2723,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 1e, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2739,12 +2739,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2755,12 +2755,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -2773,12 +2773,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 1e, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2789,12 +2789,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2805,12 +2805,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -2823,12 +2823,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 1e, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2839,12 +2839,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2855,12 +2855,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -2873,12 +2873,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 1e, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2889,12 +2889,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2905,12 +2905,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -2923,12 +2923,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2939,12 +2939,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2955,12 +2955,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -2973,12 +2973,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -2989,12 +2989,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3005,12 +3005,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -3023,12 +3023,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3039,12 +3039,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3055,12 +3055,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -3073,12 +3073,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3089,12 +3089,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3105,12 +3105,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -3123,12 +3123,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3139,12 +3139,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3155,12 +3155,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -3173,12 +3173,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3189,12 +3189,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3205,12 +3205,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -3223,12 +3223,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3239,12 +3239,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3255,12 +3255,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -3273,12 +3273,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3289,12 +3289,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3305,12 +3305,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -3323,12 +3323,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3339,12 +3339,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3355,12 +3355,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -3373,12 +3373,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3389,12 +3389,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3405,12 +3405,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -3423,12 +3423,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3439,12 +3439,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3455,12 +3455,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -3473,12 +3473,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3489,12 +3489,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3505,12 +3505,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -3523,12 +3523,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3539,12 +3539,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3555,12 +3555,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -3573,12 +3573,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3589,12 +3589,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3605,12 +3605,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -3623,12 +3623,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3639,12 +3639,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3655,12 +3655,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -3673,12 +3673,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3689,12 +3689,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3705,12 +3705,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -3723,12 +3723,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3739,12 +3739,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3755,12 +3755,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -3773,12 +3773,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3789,12 +3789,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3805,12 +3805,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -3823,12 +3823,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3839,12 +3839,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3855,12 +3855,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -3873,12 +3873,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3889,12 +3889,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3905,12 +3905,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -3923,12 +3923,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3939,12 +3939,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3955,12 +3955,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -3973,12 +3973,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -3989,12 +3989,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -4005,12 +4005,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -4023,12 +4023,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -4039,12 +4039,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -4055,12 +4055,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -4073,12 +4073,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -4089,12 +4089,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -4105,12 +4105,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -4123,12 +4123,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -4139,12 +4139,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -4155,12 +4155,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -4173,12 +4173,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -4189,12 +4189,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -4205,12 +4205,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -4223,12 +4223,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -4239,12 +4239,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -4255,12 +4255,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -4273,12 +4273,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -4289,12 +4289,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -4307,12 +4307,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -4323,12 +4323,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -4341,12 +4341,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -4357,12 +4357,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -4375,12 +4375,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -4391,12 +4391,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -4409,12 +4409,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -4425,12 +4425,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -4443,12 +4443,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -4459,12 +4459,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -4477,12 +4477,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -4493,12 +4493,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -4511,12 +4511,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -4527,12 +4527,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -4545,12 +4545,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -4561,12 +4561,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -4579,12 +4579,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -4595,12 +4595,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -4613,12 +4613,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -4629,12 +4629,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -4647,12 +4647,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -4663,12 +4663,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -4681,12 +4681,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -4697,12 +4697,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -4715,12 +4715,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -4731,12 +4731,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -4749,12 +4749,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -4765,12 +4765,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -4783,12 +4783,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -4799,12 +4799,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -4817,12 +4817,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -4833,12 +4833,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -4851,12 +4851,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -4867,12 +4867,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -4885,12 +4885,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -4901,12 +4901,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -4919,12 +4919,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -4935,12 +4935,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -4953,12 +4953,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -4969,12 +4969,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -4987,12 +4987,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -5003,12 +5003,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -5021,12 +5021,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -5037,12 +5037,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -5055,12 +5055,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -5071,12 +5071,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -5089,12 +5089,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -5105,12 +5105,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -5123,12 +5123,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -5139,12 +5139,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -5157,12 +5157,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -5173,12 +5173,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -5191,12 +5191,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -5207,12 +5207,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -5225,12 +5225,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -5241,12 +5241,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -5259,12 +5259,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -5275,12 +5275,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -5293,12 +5293,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -5309,12 +5309,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -5327,12 +5327,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -5343,12 +5343,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -5361,12 +5361,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -5377,12 +5377,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -5395,12 +5395,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -5411,12 +5411,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -5429,12 +5429,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -5445,12 +5445,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -5463,12 +5463,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -5479,12 +5479,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -5497,12 +5497,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -5513,12 +5513,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -5531,12 +5531,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -5547,12 +5547,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -5565,12 +5565,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -5581,12 +5581,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -5599,12 +5599,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -5615,12 +5615,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -5633,12 +5633,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -5649,12 +5649,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -5667,12 +5667,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -5683,12 +5683,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -5701,12 +5701,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -5717,12 +5717,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -5735,12 +5735,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -5751,12 +5751,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -5769,12 +5769,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -5785,12 +5785,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -5803,12 +5803,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -5819,12 +5819,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -5837,12 +5837,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -5853,12 +5853,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -5871,12 +5871,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -5887,12 +5887,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -5905,12 +5905,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -5921,12 +5921,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -5939,12 +5939,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -5955,12 +5955,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -5973,12 +5973,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -5989,12 +5989,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -6007,12 +6007,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -6023,12 +6023,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -6041,12 +6041,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -6057,12 +6057,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -6075,12 +6075,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -6091,12 +6091,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -6109,12 +6109,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -6125,12 +6125,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -6143,12 +6143,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -6159,12 +6159,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -6177,12 +6177,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -6193,12 +6193,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -6211,12 +6211,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -6227,12 +6227,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -6245,12 +6245,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -6261,12 +6261,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -6279,12 +6279,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -6295,12 +6295,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -6313,12 +6313,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -6329,12 +6329,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -6347,12 +6347,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -6363,12 +6363,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -6381,12 +6381,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -6397,12 +6397,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -6415,12 +6415,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -6431,12 +6431,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -6449,12 +6449,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -6465,12 +6465,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -6483,12 +6483,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -6499,12 +6499,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -6517,12 +6517,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -6533,12 +6533,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -6551,12 +6551,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -6567,12 +6567,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -6585,12 +6585,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -6601,12 +6601,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -6619,12 +6619,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -6635,12 +6635,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -6653,12 +6653,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -6669,12 +6669,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -6687,12 +6687,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -6703,12 +6703,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -6721,12 +6721,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -6737,12 +6737,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -6755,12 +6755,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -6771,12 +6771,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -6789,12 +6789,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -6805,12 +6805,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -6823,12 +6823,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -6839,12 +6839,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -6857,12 +6857,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -6873,12 +6873,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -6891,12 +6891,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -6907,12 +6907,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -6925,12 +6925,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -6941,12 +6941,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -6959,12 +6959,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -6975,12 +6975,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -6993,12 +6993,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -7009,12 +7009,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -7027,12 +7027,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -7043,12 +7043,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -7061,12 +7061,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -7077,12 +7077,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -7095,12 +7095,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -7111,12 +7111,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -7129,12 +7129,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -7145,12 +7145,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -7163,12 +7163,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -7179,12 +7179,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -7197,12 +7197,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -7213,12 +7213,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -7231,12 +7231,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -7247,12 +7247,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -7265,12 +7265,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -7281,12 +7281,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -7299,12 +7299,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -7315,12 +7315,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -7333,12 +7333,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -7349,12 +7349,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -7367,12 +7367,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -7383,12 +7383,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -7401,12 +7401,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -7417,12 +7417,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -7435,12 +7435,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -7451,12 +7451,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -7469,12 +7469,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -7485,12 +7485,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -7503,12 +7503,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -7519,12 +7519,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -7537,12 +7537,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -7553,12 +7553,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -7571,12 +7571,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -7587,12 +7587,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -7605,12 +7605,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -7621,12 +7621,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -7639,12 +7639,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -7655,12 +7655,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -7673,12 +7673,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -7689,12 +7689,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -7707,12 +7707,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -7723,12 +7723,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -7741,12 +7741,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -7757,12 +7757,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -7775,12 +7775,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -7791,12 +7791,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -7809,12 +7809,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -7825,12 +7825,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -7843,12 +7843,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -7859,12 +7859,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -7877,12 +7877,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -7893,12 +7893,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -7911,12 +7911,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -7927,12 +7927,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -7945,12 +7945,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -7961,12 +7961,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -7979,12 +7979,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -7995,12 +7995,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -8013,12 +8013,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -8029,12 +8029,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -8047,12 +8047,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -8063,12 +8063,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -8081,12 +8081,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -8097,12 +8097,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -8115,12 +8115,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -8131,12 +8131,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -8149,12 +8149,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -8165,12 +8165,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -8183,12 +8183,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -8199,12 +8199,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -8217,12 +8217,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -8233,12 +8233,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -8251,12 +8251,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -8267,12 +8267,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -8285,12 +8285,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -8301,12 +8301,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -8319,12 +8319,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -8335,12 +8335,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -8353,12 +8353,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -8369,12 +8369,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -8387,12 +8387,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -8403,12 +8403,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -8421,12 +8421,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -8437,12 +8437,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -8455,12 +8455,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -8471,12 +8471,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -8489,12 +8489,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -8505,12 +8505,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -8523,12 +8523,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -8539,12 +8539,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -8557,12 +8557,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -8573,12 +8573,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -8591,12 +8591,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -8607,12 +8607,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -8625,12 +8625,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -8641,12 +8641,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -8659,12 +8659,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -8675,12 +8675,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -8693,12 +8693,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -8709,12 +8709,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -8727,12 +8727,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -8743,12 +8743,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -8761,12 +8761,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -8777,12 +8777,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -8795,12 +8795,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -8811,12 +8811,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -8829,12 +8829,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -8845,12 +8845,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -8863,12 +8863,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -8879,12 +8879,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -8897,12 +8897,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -8913,12 +8913,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -8931,12 +8931,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -8947,12 +8947,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -8965,12 +8965,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -8981,12 +8981,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -8999,12 +8999,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -9015,12 +9015,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -9033,12 +9033,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -9049,12 +9049,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -9067,12 +9067,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -9083,12 +9083,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -9101,12 +9101,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -9117,12 +9117,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -9135,12 +9135,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -9151,12 +9151,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -9169,12 +9169,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -9185,12 +9185,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -9203,12 +9203,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -9219,12 +9219,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -9237,12 +9237,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -9253,12 +9253,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -9271,12 +9271,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -9287,12 +9287,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -9305,12 +9305,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -9321,12 +9321,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -9339,12 +9339,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -9355,12 +9355,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -9373,12 +9373,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -9389,12 +9389,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -9407,12 +9407,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -9423,12 +9423,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -9441,12 +9441,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -9457,12 +9457,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -9475,12 +9475,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -9491,12 +9491,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -9509,12 +9509,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -9525,12 +9525,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -9543,12 +9543,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -9559,12 +9559,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -9577,12 +9577,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -9593,12 +9593,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -9611,12 +9611,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -9627,12 +9627,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -9645,12 +9645,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -9661,12 +9661,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -9679,12 +9679,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -9695,12 +9695,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -9713,12 +9713,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -9729,12 +9729,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -9747,12 +9747,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -9763,12 +9763,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -9781,12 +9781,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -9797,12 +9797,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -9815,12 +9815,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -9831,12 +9831,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -9849,12 +9849,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -9865,12 +9865,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -9883,12 +9883,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -9899,12 +9899,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -9917,12 +9917,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -9933,12 +9933,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -9951,12 +9951,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -9967,12 +9967,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -9985,12 +9985,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -10001,12 +10001,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -10019,12 +10019,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -10035,12 +10035,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -10053,12 +10053,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -10069,12 +10069,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -10087,12 +10087,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -10103,12 +10103,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -10121,12 +10121,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -10137,12 +10137,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -10155,12 +10155,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -10171,12 +10171,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -10189,12 +10189,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -10205,12 +10205,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -10223,12 +10223,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -10239,12 +10239,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -10257,12 +10257,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -10273,12 +10273,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -10291,12 +10291,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -10307,12 +10307,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -10325,12 +10325,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -10341,12 +10341,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -10359,12 +10359,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -10375,12 +10375,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -10393,12 +10393,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -10409,12 +10409,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -10427,12 +10427,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -10443,12 +10443,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -10461,12 +10461,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -10477,12 +10477,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -10495,12 +10495,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -10511,12 +10511,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -10529,12 +10529,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -10545,12 +10545,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -10563,12 +10563,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -10579,12 +10579,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -10597,12 +10597,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -10613,12 +10613,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -10631,12 +10631,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -10647,12 +10647,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -10665,12 +10665,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -10681,12 +10681,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -10699,12 +10699,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -10715,12 +10715,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -10733,12 +10733,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -10749,12 +10749,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -10767,12 +10767,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -10783,12 +10783,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -10801,12 +10801,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -10817,12 +10817,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -10835,12 +10835,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -10851,12 +10851,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -10869,12 +10869,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -10885,12 +10885,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -10903,12 +10903,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -10919,12 +10919,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -10937,12 +10937,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -10953,12 +10953,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -10971,12 +10971,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -10987,12 +10987,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -11005,12 +11005,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -11021,12 +11021,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -11039,12 +11039,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -11055,12 +11055,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -11073,12 +11073,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -11089,12 +11089,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -11107,12 +11107,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -11123,12 +11123,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -11141,12 +11141,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -11157,12 +11157,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -11175,12 +11175,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -11191,12 +11191,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -11209,12 +11209,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -11225,12 +11225,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -11243,12 +11243,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -11259,12 +11259,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -11277,12 +11277,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -11293,12 +11293,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -11311,12 +11311,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -11327,12 +11327,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -11345,12 +11345,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -11361,12 +11361,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -11379,12 +11379,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -11395,12 +11395,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -11413,12 +11413,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -11429,12 +11429,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -11447,12 +11447,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -11463,12 +11463,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -11481,12 +11481,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -11497,12 +11497,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -11515,12 +11515,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -11531,12 +11531,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -11549,12 +11549,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -11565,12 +11565,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -11583,12 +11583,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -11599,12 +11599,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -11617,12 +11617,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -11633,12 +11633,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -11651,12 +11651,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -11667,12 +11667,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -11685,12 +11685,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -11701,12 +11701,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -11719,12 +11719,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -11735,12 +11735,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -11753,12 +11753,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -11769,12 +11769,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -11787,12 +11787,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -11803,12 +11803,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -11821,12 +11821,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -11837,12 +11837,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -11855,12 +11855,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -11871,12 +11871,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -11889,12 +11889,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -11905,12 +11905,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -11923,12 +11923,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -11939,12 +11939,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -11957,12 +11957,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -11973,12 +11973,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -11991,12 +11991,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -12007,12 +12007,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -12025,12 +12025,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -12041,12 +12041,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -12059,12 +12059,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -12075,12 +12075,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -12093,12 +12093,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -12109,12 +12109,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -12127,12 +12127,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -12143,12 +12143,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -12161,12 +12161,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -12177,12 +12177,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -12195,12 +12195,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -12211,12 +12211,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -12229,12 +12229,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -12245,12 +12245,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -12263,12 +12263,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -12279,12 +12279,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -12297,12 +12297,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -12313,12 +12313,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -12331,12 +12331,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -12347,12 +12347,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -12365,12 +12365,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -12381,12 +12381,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -12399,12 +12399,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -12415,12 +12415,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -12433,12 +12433,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -12449,12 +12449,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -12467,12 +12467,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -12483,12 +12483,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -12501,12 +12501,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -12517,12 +12517,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -12535,12 +12535,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -12551,12 +12551,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -12569,12 +12569,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -12585,12 +12585,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -12603,12 +12603,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -12619,12 +12619,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -12637,12 +12637,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -12653,12 +12653,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -12671,12 +12671,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -12687,12 +12687,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -12705,12 +12705,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -12721,12 +12721,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -12739,12 +12739,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -12755,12 +12755,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -12773,12 +12773,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -12789,12 +12789,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -12807,12 +12807,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -12823,12 +12823,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -12841,12 +12841,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -12857,12 +12857,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -12875,12 +12875,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -12891,12 +12891,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -12909,12 +12909,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -12925,12 +12925,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -12943,12 +12943,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -12959,12 +12959,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -12977,12 +12977,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -12993,12 +12993,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -13011,12 +13011,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -13027,12 +13027,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -13045,12 +13045,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -13061,12 +13061,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -13079,12 +13079,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -13095,12 +13095,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -13113,12 +13113,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -13129,12 +13129,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -13147,12 +13147,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -13163,12 +13163,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -13181,12 +13181,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -13197,12 +13197,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -13215,12 +13215,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -13231,12 +13231,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -13249,12 +13249,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -13265,12 +13265,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -13283,12 +13283,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -13299,12 +13299,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -13317,12 +13317,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -13333,12 +13333,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -13351,12 +13351,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -13367,12 +13367,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -13385,12 +13385,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -13401,12 +13401,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -13419,12 +13419,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -13435,12 +13435,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -13453,12 +13453,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -13469,12 +13469,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -13487,12 +13487,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -13503,12 +13503,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -13521,12 +13521,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -13537,12 +13537,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -13555,12 +13555,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -13571,12 +13571,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -13589,12 +13589,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -13605,12 +13605,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -13623,12 +13623,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -13639,12 +13639,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -13657,12 +13657,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -13673,12 +13673,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -13691,12 +13691,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -13707,12 +13707,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -13725,12 +13725,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -13741,12 +13741,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -13759,12 +13759,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -13775,12 +13775,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -13793,12 +13793,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -13809,12 +13809,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -13827,12 +13827,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -13843,12 +13843,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -13861,12 +13861,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -13877,12 +13877,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -13895,12 +13895,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -13911,12 +13911,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -13929,12 +13929,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -13945,12 +13945,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -13963,12 +13963,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -13979,12 +13979,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -13997,12 +13997,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -14013,12 +14013,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -14031,12 +14031,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -14047,12 +14047,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -14065,12 +14065,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -14081,12 +14081,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -14099,12 +14099,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -14115,12 +14115,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -14133,12 +14133,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -14149,12 +14149,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -14167,12 +14167,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -14183,12 +14183,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -14201,12 +14201,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -14217,12 +14217,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -14235,12 +14235,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -14251,12 +14251,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -14269,12 +14269,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -14285,12 +14285,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -14303,12 +14303,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -14319,12 +14319,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -14337,12 +14337,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -14353,12 +14353,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -14371,12 +14371,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -14387,12 +14387,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -14405,12 +14405,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -14421,12 +14421,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -14439,12 +14439,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -14455,12 +14455,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -14473,12 +14473,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -14489,12 +14489,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -14507,12 +14507,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -14523,12 +14523,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -14541,12 +14541,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -14557,12 +14557,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -14575,12 +14575,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -14591,12 +14591,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -14609,12 +14609,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -14625,12 +14625,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -14643,12 +14643,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -14659,12 +14659,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -14677,12 +14677,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -14693,12 +14693,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -14711,12 +14711,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -14727,12 +14727,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -14745,12 +14745,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -14761,12 +14761,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -14779,12 +14779,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -14795,12 +14795,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -14813,12 +14813,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -14829,12 +14829,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -14847,12 +14847,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -14863,12 +14863,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -14881,12 +14881,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -14897,12 +14897,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -14915,12 +14915,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -14931,12 +14931,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -14949,12 +14949,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -14965,12 +14965,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -14983,12 +14983,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -14999,12 +14999,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -15017,12 +15017,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -15033,12 +15033,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -15051,12 +15051,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -15067,12 +15067,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -15085,12 +15085,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -15101,12 +15101,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -15119,12 +15119,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -15135,12 +15135,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -15153,12 +15153,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -15169,12 +15169,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -15187,12 +15187,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -15203,12 +15203,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -15221,12 +15221,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -15237,12 +15237,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -15255,12 +15255,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -15271,12 +15271,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -15289,12 +15289,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -15305,12 +15305,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -15323,12 +15323,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -15339,12 +15339,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -15357,12 +15357,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -15373,12 +15373,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -15391,12 +15391,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -15407,12 +15407,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -15425,12 +15425,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -15441,12 +15441,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -15459,12 +15459,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -15475,12 +15475,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -15493,12 +15493,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -15509,12 +15509,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -15527,12 +15527,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -15543,12 +15543,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -15561,12 +15561,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -15577,12 +15577,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -15595,12 +15595,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -15611,12 +15611,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -15629,12 +15629,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -15645,12 +15645,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -15663,12 +15663,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -15679,12 +15679,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -15697,12 +15697,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -15713,12 +15713,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -15731,12 +15731,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -15747,12 +15747,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -15765,12 +15765,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -15781,12 +15781,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -15799,12 +15799,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -15815,12 +15815,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -15833,12 +15833,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -15849,12 +15849,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -15867,12 +15867,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -15883,12 +15883,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -15901,12 +15901,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -15917,12 +15917,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -15935,12 +15935,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -15951,12 +15951,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -15969,12 +15969,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -15985,12 +15985,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -16003,12 +16003,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -16019,12 +16019,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -16037,12 +16037,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -16053,12 +16053,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -16071,12 +16071,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -16087,12 +16087,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -16105,12 +16105,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -16121,12 +16121,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -16139,12 +16139,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -16155,12 +16155,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -16173,12 +16173,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -16189,12 +16189,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -16207,12 +16207,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -16223,12 +16223,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -16241,12 +16241,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -16257,12 +16257,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -16275,12 +16275,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -16291,12 +16291,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -16309,12 +16309,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -16325,12 +16325,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -16343,12 +16343,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -16359,12 +16359,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -16377,12 +16377,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -16393,12 +16393,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -16411,12 +16411,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -16427,12 +16427,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -16445,12 +16445,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -16461,12 +16461,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -16479,12 +16479,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -16495,12 +16495,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -16513,12 +16513,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -16529,12 +16529,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -16547,12 +16547,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -16563,12 +16563,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -16581,12 +16581,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -16597,12 +16597,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -16615,12 +16615,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -16631,12 +16631,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -16649,12 +16649,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -16665,12 +16665,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -16683,12 +16683,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -16699,12 +16699,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -16717,12 +16717,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -16733,12 +16733,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -16751,12 +16751,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -16767,12 +16767,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -16785,12 +16785,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -16801,12 +16801,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -16819,12 +16819,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -16835,12 +16835,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -16853,12 +16853,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -16869,12 +16869,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -16887,12 +16887,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -16903,12 +16903,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -16921,12 +16921,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -16937,12 +16937,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -16955,12 +16955,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -16971,12 +16971,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -16989,12 +16989,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -17005,12 +17005,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -17023,12 +17023,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -17039,12 +17039,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -17057,12 +17057,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -17073,12 +17073,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -17091,12 +17091,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -17107,12 +17107,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -17125,12 +17125,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -17141,12 +17141,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -17159,12 +17159,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -17175,12 +17175,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -17193,12 +17193,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -17209,12 +17209,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -17227,12 +17227,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 90
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -17243,12 +17243,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 90, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -17261,12 +17261,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 90
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -17277,12 +17277,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 90, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -17295,12 +17295,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 90
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -17311,12 +17311,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 90, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -17329,12 +17329,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 90
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -17345,12 +17345,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 90, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -17363,12 +17363,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 90
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -17379,12 +17379,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 90, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -17397,12 +17397,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -17413,12 +17413,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -17431,12 +17431,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -17447,12 +17447,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -17465,12 +17465,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -17481,12 +17481,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -17499,12 +17499,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -17515,12 +17515,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -17533,12 +17533,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -17549,12 +17549,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -17567,12 +17567,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -17583,12 +17583,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -17601,12 +17601,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -17617,12 +17617,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -17635,12 +17635,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -17651,12 +17651,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -17669,12 +17669,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -17685,12 +17685,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -17703,12 +17703,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -17719,12 +17719,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -17737,12 +17737,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -17753,12 +17753,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -17771,12 +17771,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 90
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -17787,12 +17787,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -17805,12 +17805,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 90
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -17821,12 +17821,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -17839,12 +17839,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 90
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -17855,12 +17855,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -17873,12 +17873,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 90
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -17889,12 +17889,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -17907,12 +17907,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 90
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -17923,12 +17923,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -17941,12 +17941,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 90
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -17957,12 +17957,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -17975,12 +17975,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 90
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -17991,12 +17991,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -18009,12 +18009,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 90
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -18025,12 +18025,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -18043,12 +18043,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 90
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -18059,12 +18059,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -18077,12 +18077,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 90
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -18093,12 +18093,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -18111,12 +18111,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 90
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -18127,12 +18127,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -18145,12 +18145,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 90
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -18161,12 +18161,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -18179,12 +18179,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 90
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -18195,12 +18195,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -18213,12 +18213,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 90
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -18229,12 +18229,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -18247,12 +18247,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 90
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -18263,12 +18263,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -18281,12 +18281,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 90
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -18297,12 +18297,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -18315,12 +18315,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -18331,12 +18331,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -18349,12 +18349,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -18365,12 +18365,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -18383,12 +18383,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -18399,12 +18399,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -18417,12 +18417,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -18433,12 +18433,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -18451,12 +18451,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -18467,12 +18467,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -18485,12 +18485,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -18501,12 +18501,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -18519,12 +18519,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -18535,12 +18535,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -18553,12 +18553,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -18569,12 +18569,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -18587,12 +18587,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -18603,12 +18603,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -18621,12 +18621,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -18637,12 +18637,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -18655,12 +18655,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -18671,12 +18671,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -18689,12 +18689,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -18705,12 +18705,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -18723,12 +18723,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -18739,12 +18739,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -18757,12 +18757,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -18773,12 +18773,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 50, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -18791,12 +18791,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -18807,12 +18807,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 50, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -18825,12 +18825,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -18841,12 +18841,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 50, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -18859,12 +18859,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -18875,12 +18875,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 50, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -18893,12 +18893,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -18909,12 +18909,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 50, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -18927,12 +18927,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -18943,12 +18943,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 50, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -18961,12 +18961,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -18977,12 +18977,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -18995,12 +18995,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -19011,12 +19011,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -19029,12 +19029,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -19045,12 +19045,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -19063,12 +19063,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -19079,12 +19079,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -19097,12 +19097,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -19113,12 +19113,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -19131,12 +19131,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -19147,12 +19147,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -19165,12 +19165,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -19181,12 +19181,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -19199,12 +19199,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -19215,12 +19215,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -19233,12 +19233,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -19249,12 +19249,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -19267,12 +19267,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -19283,12 +19283,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -19301,12 +19301,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -19317,12 +19317,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -19335,12 +19335,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -19351,12 +19351,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -19369,12 +19369,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -19385,12 +19385,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -19403,12 +19403,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -19419,12 +19419,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -19437,12 +19437,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -19453,12 +19453,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -19471,12 +19471,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -19487,12 +19487,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -19505,12 +19505,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -19521,12 +19521,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -19539,12 +19539,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -19555,12 +19555,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -19573,12 +19573,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -19589,12 +19589,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -19607,12 +19607,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -19623,12 +19623,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -19641,12 +19641,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -19657,12 +19657,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -19675,12 +19675,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -19691,12 +19691,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -19709,12 +19709,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -19725,12 +19725,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -19743,12 +19743,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -19759,12 +19759,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -19777,12 +19777,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -19793,12 +19793,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -19811,12 +19811,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -19827,12 +19827,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -19845,12 +19845,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -19861,12 +19861,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -19879,12 +19879,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -19895,12 +19895,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -19913,12 +19913,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -19929,12 +19929,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -19947,12 +19947,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -19963,12 +19963,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -19981,12 +19981,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -19997,12 +19997,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -20015,12 +20015,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -20031,12 +20031,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -20049,12 +20049,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -20065,12 +20065,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -20083,12 +20083,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -20099,12 +20099,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -20117,12 +20117,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -20133,12 +20133,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -20151,12 +20151,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -20167,12 +20167,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -20185,12 +20185,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -20201,12 +20201,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -20219,12 +20219,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -20235,12 +20235,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -20253,12 +20253,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -20269,12 +20269,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -20287,12 +20287,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -20303,12 +20303,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -20321,12 +20321,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -20337,12 +20337,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -20355,12 +20355,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -20371,12 +20371,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -20389,12 +20389,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -20405,12 +20405,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -20423,12 +20423,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -20439,12 +20439,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -20457,12 +20457,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -20473,12 +20473,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -20491,12 +20491,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -20507,12 +20507,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -20525,12 +20525,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -20541,12 +20541,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -20559,12 +20559,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -20575,12 +20575,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -20593,12 +20593,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -20609,12 +20609,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -20627,12 +20627,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -20643,12 +20643,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -20661,12 +20661,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -20677,12 +20677,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -20695,12 +20695,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -20711,12 +20711,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -20729,12 +20729,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -20745,12 +20745,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -20763,12 +20763,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -20779,12 +20779,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -20797,12 +20797,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -20813,12 +20813,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -20831,12 +20831,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -20847,12 +20847,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -20865,12 +20865,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -20881,12 +20881,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -20899,12 +20899,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -20915,12 +20915,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -20933,12 +20933,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -20949,12 +20949,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -20967,12 +20967,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -20983,12 +20983,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -21001,12 +21001,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -21017,12 +21017,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -21035,12 +21035,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -21051,12 +21051,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -21069,12 +21069,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -21085,12 +21085,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -21103,12 +21103,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -21119,12 +21119,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -21137,12 +21137,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -21153,12 +21153,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -21171,12 +21171,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -21187,12 +21187,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -21205,12 +21205,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -21221,12 +21221,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -21239,12 +21239,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -21255,12 +21255,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -21273,12 +21273,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -21289,12 +21289,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -21307,12 +21307,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -21323,12 +21323,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -21341,12 +21341,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -21357,12 +21357,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -21375,12 +21375,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -21391,12 +21391,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -21409,12 +21409,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -21425,12 +21425,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -21443,12 +21443,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -21459,12 +21459,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -21477,12 +21477,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -21493,12 +21493,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -21511,12 +21511,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -21527,12 +21527,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -21545,12 +21545,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -21561,12 +21561,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -21579,12 +21579,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -21595,12 +21595,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -21613,12 +21613,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -21629,12 +21629,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -21647,12 +21647,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -21663,12 +21663,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -21681,12 +21681,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -21697,12 +21697,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -21715,12 +21715,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -21731,12 +21731,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -21749,12 +21749,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -21765,12 +21765,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -21783,12 +21783,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -21799,12 +21799,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -21817,12 +21817,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -21833,12 +21833,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -21851,12 +21851,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -21867,12 +21867,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -21885,12 +21885,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -21901,12 +21901,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -21919,12 +21919,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -21935,12 +21935,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -21953,12 +21953,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -21969,12 +21969,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -21987,12 +21987,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -22003,12 +22003,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -22021,12 +22021,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -22037,12 +22037,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -22055,12 +22055,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -22071,12 +22071,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -22089,12 +22089,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -22105,12 +22105,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -22123,12 +22123,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -22139,12 +22139,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -22157,12 +22157,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -22173,12 +22173,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -22191,12 +22191,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -22207,12 +22207,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -22225,12 +22225,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -22241,12 +22241,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -22259,12 +22259,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -22275,12 +22275,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -22293,12 +22293,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -22309,12 +22309,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -22327,12 +22327,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -22343,12 +22343,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -22361,12 +22361,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -22377,12 +22377,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -22395,12 +22395,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -22411,12 +22411,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -22429,12 +22429,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -22445,12 +22445,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -22463,12 +22463,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -22479,12 +22479,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -22497,12 +22497,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -22513,12 +22513,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -22531,12 +22531,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -22547,12 +22547,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -22565,12 +22565,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -22581,12 +22581,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -22599,12 +22599,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -22615,12 +22615,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -22633,12 +22633,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -22649,12 +22649,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -22667,12 +22667,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -22683,12 +22683,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -22701,12 +22701,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -22717,12 +22717,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -22735,12 +22735,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -22751,12 +22751,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -22769,12 +22769,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -22785,12 +22785,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -22803,12 +22803,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -22819,12 +22819,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -22837,12 +22837,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -22853,12 +22853,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -22871,12 +22871,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -22887,12 +22887,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -22905,12 +22905,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -22921,12 +22921,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -22939,12 +22939,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -22955,12 +22955,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -22973,12 +22973,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -22989,12 +22989,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -23007,12 +23007,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -23023,12 +23023,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -23041,12 +23041,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -23057,12 +23057,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -23075,12 +23075,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -23091,12 +23091,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -23109,12 +23109,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -23125,12 +23125,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -23143,12 +23143,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -23159,12 +23159,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -23177,12 +23177,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -23193,12 +23193,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -23211,12 +23211,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -23227,12 +23227,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -23245,12 +23245,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -23261,12 +23261,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -23279,12 +23279,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -23295,12 +23295,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -23313,12 +23313,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -23329,12 +23329,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -23347,12 +23347,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -23363,12 +23363,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -23381,12 +23381,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -23397,12 +23397,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -23415,12 +23415,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -23431,12 +23431,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -23449,12 +23449,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -23465,12 +23465,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -23483,12 +23483,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -23499,12 +23499,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = b0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -23517,12 +23517,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -23533,12 +23533,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = b0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -23551,12 +23551,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -23567,12 +23567,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = b0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -23585,12 +23585,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -23601,12 +23601,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = b0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -23619,12 +23619,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -23635,12 +23635,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = b0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -23653,12 +23653,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -23669,12 +23669,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -23687,12 +23687,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -23703,12 +23703,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -23721,12 +23721,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -23737,12 +23737,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -23755,12 +23755,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -23771,12 +23771,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -23789,12 +23789,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -23805,12 +23805,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -23823,12 +23823,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -23839,12 +23839,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -23857,12 +23857,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -23873,12 +23873,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -23891,12 +23891,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -23907,12 +23907,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -23925,12 +23925,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -23941,12 +23941,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -23959,12 +23959,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -23975,12 +23975,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -23993,12 +23993,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -24009,12 +24009,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -24027,12 +24027,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -24043,12 +24043,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -24061,12 +24061,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -24077,12 +24077,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -24095,12 +24095,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -24111,12 +24111,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -24129,12 +24129,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -24145,12 +24145,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -24163,12 +24163,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -24179,12 +24179,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -24197,12 +24197,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -24213,12 +24213,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -24231,12 +24231,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -24247,12 +24247,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -24265,12 +24265,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -24281,12 +24281,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -24299,12 +24299,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -24315,12 +24315,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -24333,12 +24333,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -24349,12 +24349,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -24367,12 +24367,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -24383,12 +24383,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -24401,12 +24401,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -24417,12 +24417,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -24435,12 +24435,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -24451,12 +24451,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -24469,12 +24469,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -24485,12 +24485,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -24503,12 +24503,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -24519,12 +24519,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -24537,12 +24537,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -24553,12 +24553,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -24571,12 +24571,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -24587,12 +24587,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -24605,12 +24605,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -24621,12 +24621,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -24639,12 +24639,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -24655,12 +24655,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -24673,12 +24673,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -24689,12 +24689,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -24707,12 +24707,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -24723,12 +24723,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -24741,12 +24741,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -24757,12 +24757,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -24775,12 +24775,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -24791,12 +24791,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -24809,12 +24809,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -24825,12 +24825,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -24843,12 +24843,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -24859,12 +24859,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -24877,12 +24877,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -24893,12 +24893,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -24911,12 +24911,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -24927,12 +24927,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -24945,12 +24945,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -24961,12 +24961,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -24979,12 +24979,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -24995,12 +24995,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -25013,12 +25013,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -25029,12 +25029,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 70, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -25047,12 +25047,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -25063,12 +25063,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 70, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -25081,12 +25081,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -25097,12 +25097,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 70, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -25115,12 +25115,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -25131,12 +25131,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 70, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -25149,12 +25149,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -25165,12 +25165,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 70, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -25183,12 +25183,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -25199,12 +25199,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 70, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -25217,12 +25217,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -25233,12 +25233,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -25251,12 +25251,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -25267,12 +25267,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -25285,12 +25285,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -25301,12 +25301,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -25319,12 +25319,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -25335,12 +25335,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -25353,12 +25353,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -25369,12 +25369,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -25387,12 +25387,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -25403,12 +25403,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -25421,12 +25421,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -25437,12 +25437,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -25455,12 +25455,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -25471,12 +25471,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -25489,12 +25489,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -25505,12 +25505,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -25523,12 +25523,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -25539,12 +25539,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -25557,12 +25557,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -25573,12 +25573,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -25591,12 +25591,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -25607,12 +25607,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -25625,12 +25625,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -25641,12 +25641,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -25659,12 +25659,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -25675,12 +25675,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -25693,12 +25693,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -25709,12 +25709,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -25727,12 +25727,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -25743,12 +25743,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -25761,12 +25761,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -25777,12 +25777,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -25795,12 +25795,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -25811,12 +25811,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -25829,12 +25829,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -25845,12 +25845,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -25863,12 +25863,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -25879,12 +25879,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -25897,12 +25897,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -25913,12 +25913,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -25931,12 +25931,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -25947,12 +25947,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -25965,12 +25965,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -25981,12 +25981,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -25999,12 +25999,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -26015,12 +26015,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -26033,12 +26033,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -26049,12 +26049,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -26067,12 +26067,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -26083,12 +26083,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -26101,12 +26101,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -26117,12 +26117,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -26135,12 +26135,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -26151,12 +26151,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -26169,12 +26169,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -26185,12 +26185,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -26203,12 +26203,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -26219,12 +26219,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -26237,12 +26237,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -26253,12 +26253,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -26271,12 +26271,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -26287,12 +26287,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -26305,12 +26305,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -26321,12 +26321,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -26339,12 +26339,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -26355,12 +26355,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -26373,12 +26373,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -26389,12 +26389,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -26407,12 +26407,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -26423,12 +26423,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -26441,12 +26441,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -26457,12 +26457,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -26475,12 +26475,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -26491,12 +26491,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -26509,12 +26509,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -26525,12 +26525,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -26543,12 +26543,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -26559,12 +26559,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -26577,12 +26577,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -26593,12 +26593,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 70, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -26611,12 +26611,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -26627,12 +26627,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -26645,12 +26645,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -26661,12 +26661,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -26679,12 +26679,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -26695,12 +26695,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -26713,12 +26713,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -26729,12 +26729,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -26747,12 +26747,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -26763,12 +26763,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -26781,12 +26781,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -26797,12 +26797,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -26815,12 +26815,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -26831,12 +26831,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -26849,12 +26849,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -26865,12 +26865,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -26883,12 +26883,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -26899,12 +26899,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -26917,12 +26917,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -26933,12 +26933,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -26951,12 +26951,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -26967,12 +26967,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -26985,12 +26985,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -27001,12 +27001,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -27019,12 +27019,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -27035,12 +27035,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -27053,12 +27053,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -27069,12 +27069,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -27087,12 +27087,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -27103,12 +27103,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -27121,12 +27121,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -27137,12 +27137,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -27155,12 +27155,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -27171,12 +27171,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -27189,12 +27189,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -27205,12 +27205,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -27223,12 +27223,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -27239,12 +27239,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -27257,12 +27257,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -27273,12 +27273,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -27291,12 +27291,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -27307,12 +27307,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -27325,12 +27325,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -27341,12 +27341,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -27359,12 +27359,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -27375,12 +27375,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -27393,12 +27393,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -27409,12 +27409,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -27427,12 +27427,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -27443,12 +27443,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -27461,12 +27461,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -27477,12 +27477,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -27495,12 +27495,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -27511,12 +27511,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -27529,12 +27529,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -27545,12 +27545,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -27563,12 +27563,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -27579,12 +27579,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -27597,12 +27597,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -27613,12 +27613,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -27631,12 +27631,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -27647,12 +27647,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -27665,12 +27665,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -27681,12 +27681,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -27699,12 +27699,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -27715,12 +27715,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -27733,12 +27733,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -27749,12 +27749,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -27767,12 +27767,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -27783,12 +27783,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -27801,12 +27801,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -27817,12 +27817,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -27835,12 +27835,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -27851,12 +27851,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -27869,12 +27869,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -27885,12 +27885,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -27903,12 +27903,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -27919,12 +27919,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -27937,12 +27937,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -27953,12 +27953,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -27971,12 +27971,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -27987,12 +27987,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -28005,12 +28005,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -28021,12 +28021,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -28039,12 +28039,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -28055,12 +28055,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -28073,12 +28073,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -28089,12 +28089,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -28107,12 +28107,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -28123,12 +28123,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -28141,12 +28141,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -28157,12 +28157,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -28175,12 +28175,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -28191,12 +28191,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -28209,12 +28209,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -28225,12 +28225,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -28243,12 +28243,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -28259,12 +28259,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -28277,12 +28277,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -28293,12 +28293,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -28311,12 +28311,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -28327,12 +28327,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -28345,12 +28345,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -28361,12 +28361,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -28379,12 +28379,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -28395,12 +28395,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -28413,12 +28413,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -28429,12 +28429,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -28447,12 +28447,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -28463,12 +28463,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -28481,12 +28481,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -28497,12 +28497,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -28515,12 +28515,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -28531,12 +28531,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -28549,12 +28549,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -28565,12 +28565,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -28583,12 +28583,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -28599,12 +28599,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -28617,12 +28617,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -28633,12 +28633,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -28651,12 +28651,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -28667,12 +28667,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -28685,12 +28685,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -28701,12 +28701,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -28719,12 +28719,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -28735,12 +28735,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -28753,12 +28753,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -28769,12 +28769,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -28787,12 +28787,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -28803,12 +28803,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -28821,12 +28821,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -28837,12 +28837,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -28855,12 +28855,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -28871,12 +28871,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -28889,12 +28889,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -28905,12 +28905,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -28923,12 +28923,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -28939,12 +28939,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -28957,12 +28957,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -28973,12 +28973,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -28991,12 +28991,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -29007,12 +29007,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -29025,12 +29025,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -29041,12 +29041,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -29059,12 +29059,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -29075,12 +29075,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -29093,12 +29093,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -29109,12 +29109,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -29127,12 +29127,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -29143,12 +29143,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -29161,12 +29161,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -29177,12 +29177,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -29195,12 +29195,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -29211,12 +29211,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -29229,12 +29229,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -29245,12 +29245,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -29263,12 +29263,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -29279,12 +29279,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -29297,12 +29297,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -29313,12 +29313,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -29331,12 +29331,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -29347,12 +29347,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -29365,12 +29365,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -29381,12 +29381,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -29399,12 +29399,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -29415,12 +29415,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -29433,12 +29433,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -29449,12 +29449,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -29467,12 +29467,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -29483,12 +29483,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -29501,12 +29501,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -29517,12 +29517,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -29535,12 +29535,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -29551,12 +29551,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -29569,12 +29569,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -29585,12 +29585,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -29603,12 +29603,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -29619,12 +29619,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -29637,12 +29637,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -29653,12 +29653,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -29671,12 +29671,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -29687,12 +29687,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -29705,12 +29705,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -29721,12 +29721,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -29739,12 +29739,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -29755,12 +29755,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -29773,12 +29773,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 88
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -29789,12 +29789,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 88, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -29807,12 +29807,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 88
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -29823,12 +29823,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 88, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -29841,12 +29841,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 88
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -29857,12 +29857,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 88, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -29875,12 +29875,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 88
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -29891,12 +29891,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 88, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -29909,12 +29909,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -29925,12 +29925,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -29943,12 +29943,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -29959,12 +29959,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -29977,12 +29977,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -29993,12 +29993,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -30011,12 +30011,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -30027,12 +30027,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -30045,12 +30045,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -30061,12 +30061,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -30079,12 +30079,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -30095,12 +30095,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -30113,12 +30113,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -30129,12 +30129,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -30147,12 +30147,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -30163,12 +30163,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -30181,12 +30181,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -30197,12 +30197,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -30215,12 +30215,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -30231,12 +30231,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -30249,12 +30249,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -30265,12 +30265,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -30283,12 +30283,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -30299,12 +30299,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -30317,12 +30317,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -30333,12 +30333,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -30351,12 +30351,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -30367,12 +30367,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -30385,12 +30385,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -30401,12 +30401,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -30419,12 +30419,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -30435,12 +30435,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -30453,12 +30453,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -30469,12 +30469,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -30487,12 +30487,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -30503,12 +30503,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -30521,12 +30521,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -30537,12 +30537,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -30555,12 +30555,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -30571,12 +30571,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -30589,12 +30589,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -30605,12 +30605,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -30623,12 +30623,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -30639,12 +30639,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -30657,12 +30657,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -30673,12 +30673,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -30691,12 +30691,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -30707,12 +30707,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -30725,12 +30725,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -30741,12 +30741,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -30759,12 +30759,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -30775,12 +30775,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -30793,12 +30793,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -30809,12 +30809,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -30827,12 +30827,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -30843,12 +30843,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -30861,12 +30861,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -30877,12 +30877,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -30895,12 +30895,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -30911,12 +30911,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -30929,12 +30929,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -30945,12 +30945,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -30963,12 +30963,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -30979,12 +30979,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -30997,12 +30997,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -31013,12 +31013,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -31031,12 +31031,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -31047,12 +31047,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -31065,12 +31065,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -31081,12 +31081,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -31099,12 +31099,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -31115,12 +31115,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -31133,12 +31133,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -31149,12 +31149,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -31167,12 +31167,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -31183,12 +31183,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -31201,12 +31201,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -31217,12 +31217,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -31235,12 +31235,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -31251,12 +31251,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -31269,12 +31269,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -31285,12 +31285,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -31303,12 +31303,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 48
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -31319,12 +31319,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 48, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -31337,12 +31337,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 48
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -31353,12 +31353,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 48, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -31371,12 +31371,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 48
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -31387,12 +31387,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 48, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -31405,12 +31405,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 48
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -31421,12 +31421,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 48, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -31439,12 +31439,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 48
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -31455,12 +31455,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 48, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -31473,12 +31473,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -31489,12 +31489,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -31507,12 +31507,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -31523,12 +31523,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -31541,12 +31541,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -31557,12 +31557,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -31575,12 +31575,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -31591,12 +31591,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -31609,12 +31609,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -31625,12 +31625,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -31643,12 +31643,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -31659,12 +31659,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -31677,12 +31677,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -31693,12 +31693,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -31711,12 +31711,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -31727,12 +31727,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -31745,12 +31745,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -31761,12 +31761,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -31779,12 +31779,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -31795,12 +31795,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -31813,12 +31813,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -31829,12 +31829,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -31847,12 +31847,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 48
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -31863,12 +31863,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -31881,12 +31881,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 48
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -31897,12 +31897,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -31915,12 +31915,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 48
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -31931,12 +31931,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -31949,12 +31949,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 48
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -31965,12 +31965,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -31983,12 +31983,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 48
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -31999,12 +31999,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -32017,12 +32017,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 48
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -32033,12 +32033,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -32051,12 +32051,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 48
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -32067,12 +32067,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -32085,12 +32085,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 48
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -32101,12 +32101,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -32119,12 +32119,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 48
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -32135,12 +32135,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -32153,12 +32153,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 48
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -32169,12 +32169,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -32187,12 +32187,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 48
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -32203,12 +32203,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -32221,12 +32221,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 48
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -32237,12 +32237,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -32255,12 +32255,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 48
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -32271,12 +32271,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -32289,12 +32289,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 48
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -32305,12 +32305,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -32323,12 +32323,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 48
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -32339,12 +32339,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -32357,12 +32357,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 48
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -32373,12 +32373,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -32391,12 +32391,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -32407,12 +32407,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -32425,12 +32425,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -32441,12 +32441,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -32459,12 +32459,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -32475,12 +32475,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -32493,12 +32493,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -32509,12 +32509,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -32527,12 +32527,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -32543,12 +32543,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -32561,12 +32561,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -32577,12 +32577,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -32595,12 +32595,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -32611,12 +32611,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -32629,12 +32629,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -32645,12 +32645,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -32663,12 +32663,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -32679,12 +32679,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -32697,12 +32697,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -32713,12 +32713,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -32731,12 +32731,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -32747,12 +32747,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -32765,12 +32765,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -32781,12 +32781,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -32799,12 +32799,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -32815,12 +32815,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -32833,12 +32833,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -32849,12 +32849,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -32867,12 +32867,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -32883,12 +32883,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -32901,12 +32901,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -32917,12 +32917,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c8, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -32935,12 +32935,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -32951,12 +32951,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c8, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -32969,12 +32969,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -32985,12 +32985,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c8, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -33003,12 +33003,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -33019,12 +33019,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c8, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -33037,12 +33037,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -33053,12 +33053,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -33071,12 +33071,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -33087,12 +33087,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -33105,12 +33105,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -33121,12 +33121,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -33139,12 +33139,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -33155,12 +33155,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -33173,12 +33173,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -33189,12 +33189,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -33207,12 +33207,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -33223,12 +33223,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -33241,12 +33241,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -33257,12 +33257,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -33275,12 +33275,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -33291,12 +33291,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -33309,12 +33309,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -33325,12 +33325,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -33343,12 +33343,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -33359,12 +33359,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -33377,12 +33377,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -33393,12 +33393,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -33411,12 +33411,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -33427,12 +33427,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -33445,12 +33445,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -33461,12 +33461,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -33479,12 +33479,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -33495,12 +33495,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -33513,12 +33513,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -33529,12 +33529,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -33547,12 +33547,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -33563,12 +33563,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -33581,12 +33581,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -33597,12 +33597,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -33615,12 +33615,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -33631,12 +33631,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -33649,12 +33649,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -33665,12 +33665,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -33683,12 +33683,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -33699,12 +33699,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -33717,12 +33717,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -33733,12 +33733,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -33751,12 +33751,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -33767,12 +33767,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -33785,12 +33785,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -33801,12 +33801,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -33819,12 +33819,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -33835,12 +33835,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -33853,12 +33853,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -33869,12 +33869,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -33887,12 +33887,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -33903,12 +33903,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -33921,12 +33921,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -33937,12 +33937,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -33955,12 +33955,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -33971,12 +33971,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -33989,12 +33989,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -34005,12 +34005,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -34023,12 +34023,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -34039,12 +34039,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -34057,12 +34057,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -34073,12 +34073,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -34091,12 +34091,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -34107,12 +34107,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -34125,12 +34125,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -34141,12 +34141,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -34159,12 +34159,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -34175,12 +34175,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -34193,12 +34193,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -34209,12 +34209,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -34227,12 +34227,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -34243,12 +34243,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -34261,12 +34261,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -34277,12 +34277,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -34295,12 +34295,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -34311,12 +34311,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -34329,12 +34329,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -34345,12 +34345,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -34363,12 +34363,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -34379,12 +34379,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -34397,12 +34397,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -34413,12 +34413,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 28, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -34431,12 +34431,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -34447,12 +34447,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 28, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -34465,12 +34465,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -34481,12 +34481,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 28, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -34499,12 +34499,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -34515,12 +34515,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 28, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -34533,12 +34533,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -34549,12 +34549,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 28, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -34567,12 +34567,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -34583,12 +34583,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 28, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -34601,12 +34601,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -34617,12 +34617,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -34635,12 +34635,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -34651,12 +34651,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -34669,12 +34669,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -34685,12 +34685,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -34703,12 +34703,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -34719,12 +34719,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -34737,12 +34737,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -34753,12 +34753,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -34771,12 +34771,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -34787,12 +34787,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -34805,12 +34805,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -34821,12 +34821,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -34839,12 +34839,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -34855,12 +34855,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -34873,12 +34873,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -34889,12 +34889,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -34907,12 +34907,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -34923,12 +34923,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -34941,12 +34941,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -34957,12 +34957,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -34975,12 +34975,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -34991,12 +34991,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -35009,12 +35009,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -35025,12 +35025,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -35043,12 +35043,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -35059,12 +35059,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -35077,12 +35077,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -35093,12 +35093,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -35111,12 +35111,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -35127,12 +35127,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -35145,12 +35145,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -35161,12 +35161,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -35179,12 +35179,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -35195,12 +35195,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -35213,12 +35213,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -35229,12 +35229,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -35247,12 +35247,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -35263,12 +35263,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -35281,12 +35281,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -35297,12 +35297,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -35315,12 +35315,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -35331,12 +35331,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -35349,12 +35349,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -35365,12 +35365,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -35383,12 +35383,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -35399,12 +35399,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -35417,12 +35417,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -35433,12 +35433,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -35451,12 +35451,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -35467,12 +35467,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -35485,12 +35485,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -35501,12 +35501,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -35519,12 +35519,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -35535,12 +35535,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -35553,12 +35553,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -35569,12 +35569,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -35587,12 +35587,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -35603,12 +35603,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -35621,12 +35621,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -35637,12 +35637,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -35655,12 +35655,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -35671,12 +35671,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -35689,12 +35689,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -35705,12 +35705,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -35723,12 +35723,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -35739,12 +35739,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -35757,12 +35757,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -35773,12 +35773,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -35791,12 +35791,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -35807,12 +35807,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -35825,12 +35825,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -35841,12 +35841,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -35859,12 +35859,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -35875,12 +35875,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -35893,12 +35893,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -35909,12 +35909,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -35927,12 +35927,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -35943,12 +35943,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -35961,12 +35961,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -35977,12 +35977,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 28, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -35995,12 +35995,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -36011,12 +36011,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 28, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -36029,12 +36029,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = a8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -36045,12 +36045,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a8, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -36063,12 +36063,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = a8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -36079,12 +36079,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a8, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -36097,12 +36097,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = a8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -36113,12 +36113,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a8, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -36131,12 +36131,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = a8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -36147,12 +36147,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a8, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -36165,12 +36165,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -36181,12 +36181,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -36199,12 +36199,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -36215,12 +36215,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -36233,12 +36233,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -36249,12 +36249,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -36267,12 +36267,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -36283,12 +36283,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -36301,12 +36301,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -36317,12 +36317,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -36335,12 +36335,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -36351,12 +36351,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -36369,12 +36369,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -36385,12 +36385,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -36403,12 +36403,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -36419,12 +36419,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -36437,12 +36437,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -36453,12 +36453,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -36471,12 +36471,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -36487,12 +36487,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -36505,12 +36505,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -36521,12 +36521,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -36539,12 +36539,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -36555,12 +36555,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -36573,12 +36573,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -36589,12 +36589,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -36607,12 +36607,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -36623,12 +36623,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -36641,12 +36641,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -36657,12 +36657,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -36675,12 +36675,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -36691,12 +36691,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -36709,12 +36709,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -36725,12 +36725,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -36743,12 +36743,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -36759,12 +36759,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -36777,12 +36777,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -36793,12 +36793,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -36811,12 +36811,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -36827,12 +36827,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -36845,12 +36845,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -36861,12 +36861,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -36879,12 +36879,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -36895,12 +36895,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -36913,12 +36913,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -36929,12 +36929,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -36947,12 +36947,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -36963,12 +36963,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -36981,12 +36981,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -36997,12 +36997,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -37015,12 +37015,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -37031,12 +37031,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -37049,12 +37049,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -37065,12 +37065,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -37083,12 +37083,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -37099,12 +37099,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -37117,12 +37117,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -37133,12 +37133,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -37151,12 +37151,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -37167,12 +37167,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -37185,12 +37185,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -37201,12 +37201,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -37219,12 +37219,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -37235,12 +37235,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -37253,12 +37253,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -37269,12 +37269,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -37287,12 +37287,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -37303,12 +37303,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -37321,12 +37321,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -37337,12 +37337,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -37355,12 +37355,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -37371,12 +37371,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -37389,12 +37389,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -37405,12 +37405,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -37423,12 +37423,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -37439,12 +37439,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -37457,12 +37457,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -37473,12 +37473,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -37491,12 +37491,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -37507,12 +37507,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -37525,12 +37525,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -37541,12 +37541,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -37559,12 +37559,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -37575,12 +37575,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 68, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -37593,12 +37593,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -37609,12 +37609,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 68, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -37627,12 +37627,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -37643,12 +37643,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 68, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -37661,12 +37661,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -37677,12 +37677,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 68, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -37695,12 +37695,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -37711,12 +37711,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 68, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -37729,12 +37729,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -37745,12 +37745,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -37763,12 +37763,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -37779,12 +37779,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -37797,12 +37797,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -37813,12 +37813,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -37831,12 +37831,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -37847,12 +37847,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -37865,12 +37865,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -37881,12 +37881,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -37899,12 +37899,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -37915,12 +37915,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -37933,12 +37933,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -37949,12 +37949,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -37967,12 +37967,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -37983,12 +37983,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -38001,12 +38001,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -38017,12 +38017,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -38035,12 +38035,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -38051,12 +38051,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -38069,12 +38069,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -38085,12 +38085,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -38103,12 +38103,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -38119,12 +38119,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -38137,12 +38137,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -38153,12 +38153,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -38171,12 +38171,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -38187,12 +38187,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -38205,12 +38205,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -38221,12 +38221,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -38239,12 +38239,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -38255,12 +38255,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -38273,12 +38273,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -38289,12 +38289,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -38307,12 +38307,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -38323,12 +38323,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -38341,12 +38341,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -38357,12 +38357,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -38375,12 +38375,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -38391,12 +38391,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -38409,12 +38409,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -38425,12 +38425,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -38443,12 +38443,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -38459,12 +38459,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -38477,12 +38477,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -38493,12 +38493,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -38511,12 +38511,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -38527,12 +38527,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -38545,12 +38545,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -38561,12 +38561,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -38579,12 +38579,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -38595,12 +38595,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -38613,12 +38613,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -38629,12 +38629,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -38647,12 +38647,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -38663,12 +38663,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -38681,12 +38681,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -38697,12 +38697,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -38715,12 +38715,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -38731,12 +38731,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -38749,12 +38749,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -38765,12 +38765,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -38783,12 +38783,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -38799,12 +38799,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -38817,12 +38817,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -38833,12 +38833,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -38851,12 +38851,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -38867,12 +38867,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -38885,12 +38885,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -38901,12 +38901,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -38919,12 +38919,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -38935,12 +38935,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -38953,12 +38953,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -38969,12 +38969,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -38987,12 +38987,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -39003,12 +39003,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -39021,12 +39021,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -39037,12 +39037,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -39055,12 +39055,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -39071,12 +39071,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -39089,12 +39089,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -39105,12 +39105,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -39123,12 +39123,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -39139,12 +39139,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -39157,12 +39157,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -39173,12 +39173,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e8, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -39191,12 +39191,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -39207,12 +39207,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e8, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -39225,12 +39225,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -39241,12 +39241,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e8, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -39259,12 +39259,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -39275,12 +39275,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e8, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -39293,12 +39293,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -39309,12 +39309,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -39327,12 +39327,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -39343,12 +39343,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -39361,12 +39361,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -39377,12 +39377,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -39395,12 +39395,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -39411,12 +39411,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -39429,12 +39429,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -39445,12 +39445,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -39463,12 +39463,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -39479,12 +39479,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -39497,12 +39497,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -39513,12 +39513,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -39531,12 +39531,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -39547,12 +39547,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -39565,12 +39565,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -39581,12 +39581,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -39599,12 +39599,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -39615,12 +39615,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -39633,12 +39633,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -39649,12 +39649,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -39667,12 +39667,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -39683,12 +39683,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -39701,12 +39701,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -39717,12 +39717,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -39735,12 +39735,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -39751,12 +39751,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -39769,12 +39769,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -39785,12 +39785,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -39803,12 +39803,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -39819,12 +39819,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -39837,12 +39837,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -39853,12 +39853,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -39871,12 +39871,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -39887,12 +39887,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -39905,12 +39905,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -39921,12 +39921,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -39939,12 +39939,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -39955,12 +39955,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -39973,12 +39973,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -39989,12 +39989,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -40007,12 +40007,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -40023,12 +40023,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -40041,12 +40041,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -40057,12 +40057,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -40075,12 +40075,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -40091,12 +40091,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -40109,12 +40109,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -40125,12 +40125,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -40143,12 +40143,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -40159,12 +40159,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -40177,12 +40177,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -40193,12 +40193,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -40211,12 +40211,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -40227,12 +40227,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -40245,12 +40245,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -40261,12 +40261,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -40279,12 +40279,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -40295,12 +40295,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -40313,12 +40313,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -40329,12 +40329,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -40347,12 +40347,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -40363,12 +40363,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -40381,12 +40381,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -40397,12 +40397,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -40415,12 +40415,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -40431,12 +40431,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -40449,12 +40449,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -40465,12 +40465,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -40483,12 +40483,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -40499,12 +40499,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -40517,12 +40517,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -40533,12 +40533,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -40551,12 +40551,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -40567,12 +40567,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -40585,12 +40585,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -40601,12 +40601,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -40619,12 +40619,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -40635,12 +40635,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -40653,12 +40653,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -40669,12 +40669,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -40687,12 +40687,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -40703,12 +40703,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -40721,12 +40721,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -40737,12 +40737,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -40755,12 +40755,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -40771,12 +40771,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -40789,12 +40789,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -40805,12 +40805,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -40823,12 +40823,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -40839,12 +40839,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -40857,12 +40857,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -40873,12 +40873,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -40891,12 +40891,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -40907,12 +40907,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -40925,12 +40925,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -40941,12 +40941,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -40959,12 +40959,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -40975,12 +40975,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -40993,12 +40993,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -41009,12 +41009,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -41027,12 +41027,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -41043,12 +41043,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -41061,12 +41061,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -41077,12 +41077,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -41095,12 +41095,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -41111,12 +41111,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -41129,12 +41129,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -41145,12 +41145,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -41163,12 +41163,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -41179,12 +41179,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -41197,12 +41197,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -41213,12 +41213,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -41231,12 +41231,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -41247,12 +41247,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -41265,12 +41265,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -41281,12 +41281,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -41299,12 +41299,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -41315,12 +41315,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -41333,12 +41333,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -41349,12 +41349,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -41367,12 +41367,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -41383,12 +41383,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -41401,12 +41401,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -41417,12 +41417,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -41435,12 +41435,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -41451,12 +41451,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -41469,12 +41469,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -41485,12 +41485,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -41503,12 +41503,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -41519,12 +41519,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -41537,12 +41537,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -41553,12 +41553,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -41571,12 +41571,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -41587,12 +41587,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -41605,12 +41605,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -41621,12 +41621,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -41639,12 +41639,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -41655,12 +41655,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -41673,12 +41673,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -41689,12 +41689,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -41707,12 +41707,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -41723,12 +41723,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -41741,12 +41741,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -41757,12 +41757,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -41775,12 +41775,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -41791,12 +41791,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -41809,12 +41809,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -41825,12 +41825,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -41843,12 +41843,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -41859,12 +41859,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -41877,12 +41877,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -41893,12 +41893,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -41911,12 +41911,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -41927,12 +41927,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -41945,12 +41945,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -41961,12 +41961,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -41979,12 +41979,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -41995,12 +41995,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -42013,12 +42013,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -42029,12 +42029,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -42047,12 +42047,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -42063,12 +42063,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -42081,12 +42081,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -42097,12 +42097,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -42115,12 +42115,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -42131,12 +42131,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -42149,12 +42149,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -42165,12 +42165,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -42183,12 +42183,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -42199,12 +42199,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -42217,12 +42217,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -42233,12 +42233,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -42251,12 +42251,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -42267,12 +42267,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -42285,12 +42285,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 98
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -42301,12 +42301,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 98, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -42319,12 +42319,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 98
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -42335,12 +42335,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 98, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -42353,12 +42353,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 98
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -42369,12 +42369,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 98, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -42387,12 +42387,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 98
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -42403,12 +42403,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 98, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -42421,12 +42421,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -42437,12 +42437,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -42455,12 +42455,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -42471,12 +42471,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -42489,12 +42489,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -42505,12 +42505,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -42523,12 +42523,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -42539,12 +42539,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -42557,12 +42557,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -42573,12 +42573,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -42591,12 +42591,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -42607,12 +42607,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -42625,12 +42625,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -42641,12 +42641,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -42659,12 +42659,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -42675,12 +42675,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -42693,12 +42693,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -42709,12 +42709,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -42727,12 +42727,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -42743,12 +42743,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -42761,12 +42761,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -42777,12 +42777,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -42795,12 +42795,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -42811,12 +42811,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -42829,12 +42829,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -42845,12 +42845,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -42863,12 +42863,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -42879,12 +42879,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -42897,12 +42897,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -42913,12 +42913,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -42931,12 +42931,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -42947,12 +42947,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -42965,12 +42965,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -42981,12 +42981,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -42999,12 +42999,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -43015,12 +43015,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -43033,12 +43033,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -43049,12 +43049,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -43067,12 +43067,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -43083,12 +43083,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -43101,12 +43101,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -43117,12 +43117,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -43135,12 +43135,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -43151,12 +43151,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -43169,12 +43169,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -43185,12 +43185,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -43203,12 +43203,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -43219,12 +43219,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -43237,12 +43237,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -43253,12 +43253,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -43271,12 +43271,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -43287,12 +43287,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -43305,12 +43305,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -43321,12 +43321,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -43339,12 +43339,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -43355,12 +43355,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -43373,12 +43373,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -43389,12 +43389,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -43407,12 +43407,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -43423,12 +43423,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -43441,12 +43441,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -43457,12 +43457,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -43475,12 +43475,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -43491,12 +43491,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -43509,12 +43509,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -43525,12 +43525,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -43543,12 +43543,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -43559,12 +43559,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -43577,12 +43577,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -43593,12 +43593,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -43611,12 +43611,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -43627,12 +43627,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -43645,12 +43645,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -43661,12 +43661,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -43679,12 +43679,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -43695,12 +43695,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -43713,12 +43713,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -43729,12 +43729,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -43747,12 +43747,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -43763,12 +43763,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -43781,12 +43781,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -43797,12 +43797,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -43815,12 +43815,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 58
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -43831,12 +43831,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 58, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -43849,12 +43849,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 58
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -43865,12 +43865,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 58, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -43883,12 +43883,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 58
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -43899,12 +43899,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 58, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -43917,12 +43917,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 58
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -43933,12 +43933,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 58, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -43951,12 +43951,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 58
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -43967,12 +43967,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 58, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -43985,12 +43985,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -44001,12 +44001,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -44019,12 +44019,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -44035,12 +44035,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -44053,12 +44053,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -44069,12 +44069,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -44087,12 +44087,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -44103,12 +44103,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -44121,12 +44121,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -44137,12 +44137,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -44155,12 +44155,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -44171,12 +44171,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -44189,12 +44189,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -44205,12 +44205,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -44223,12 +44223,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -44239,12 +44239,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -44257,12 +44257,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -44273,12 +44273,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -44291,12 +44291,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -44307,12 +44307,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -44325,12 +44325,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -44341,12 +44341,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -44359,12 +44359,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 58
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -44375,12 +44375,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -44393,12 +44393,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 58
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -44409,12 +44409,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -44427,12 +44427,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 58
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -44443,12 +44443,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -44461,12 +44461,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 58
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -44477,12 +44477,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -44495,12 +44495,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 58
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -44511,12 +44511,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -44529,12 +44529,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 58
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -44545,12 +44545,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -44563,12 +44563,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 58
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -44579,12 +44579,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -44597,12 +44597,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 58
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -44613,12 +44613,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -44631,12 +44631,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 58
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -44647,12 +44647,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -44665,12 +44665,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 58
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -44681,12 +44681,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -44699,12 +44699,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 58
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -44715,12 +44715,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -44733,12 +44733,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 58
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -44749,12 +44749,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -44767,12 +44767,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 58
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -44783,12 +44783,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -44801,12 +44801,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 58
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -44817,12 +44817,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -44835,12 +44835,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 58
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -44851,12 +44851,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -44869,12 +44869,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 58
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -44885,12 +44885,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -44903,12 +44903,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -44919,12 +44919,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -44937,12 +44937,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -44953,12 +44953,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -44971,12 +44971,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -44987,12 +44987,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -45005,12 +45005,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -45021,12 +45021,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -45039,12 +45039,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -45055,12 +45055,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -45073,12 +45073,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -45089,12 +45089,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -45107,12 +45107,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -45123,12 +45123,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -45141,12 +45141,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -45157,12 +45157,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -45175,12 +45175,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -45191,12 +45191,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -45209,12 +45209,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -45225,12 +45225,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -45243,12 +45243,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -45259,12 +45259,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -45277,12 +45277,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -45293,12 +45293,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -45311,12 +45311,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -45327,12 +45327,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -45345,12 +45345,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -45361,12 +45361,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -45379,12 +45379,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 58
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -45395,12 +45395,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 58, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -45413,12 +45413,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -45429,12 +45429,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d8, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -45447,12 +45447,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -45463,12 +45463,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d8, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -45481,12 +45481,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -45497,12 +45497,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d8, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -45515,12 +45515,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -45531,12 +45531,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d8, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -45549,12 +45549,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -45565,12 +45565,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -45583,12 +45583,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -45599,12 +45599,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -45617,12 +45617,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -45633,12 +45633,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -45651,12 +45651,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -45667,12 +45667,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -45685,12 +45685,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -45701,12 +45701,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -45719,12 +45719,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -45735,12 +45735,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -45753,12 +45753,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -45769,12 +45769,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -45787,12 +45787,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -45803,12 +45803,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -45821,12 +45821,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -45837,12 +45837,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -45855,12 +45855,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -45871,12 +45871,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -45889,12 +45889,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -45905,12 +45905,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -45923,12 +45923,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -45939,12 +45939,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -45957,12 +45957,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -45973,12 +45973,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -45991,12 +45991,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -46007,12 +46007,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -46025,12 +46025,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -46041,12 +46041,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -46059,12 +46059,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -46075,12 +46075,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -46093,12 +46093,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -46109,12 +46109,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -46127,12 +46127,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -46143,12 +46143,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -46161,12 +46161,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -46177,12 +46177,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -46195,12 +46195,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -46211,12 +46211,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -46229,12 +46229,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -46245,12 +46245,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -46263,12 +46263,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -46279,12 +46279,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -46297,12 +46297,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -46313,12 +46313,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -46331,12 +46331,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -46347,12 +46347,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -46365,12 +46365,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -46381,12 +46381,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -46399,12 +46399,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -46415,12 +46415,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -46433,12 +46433,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -46449,12 +46449,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -46467,12 +46467,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -46483,12 +46483,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -46501,12 +46501,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -46517,12 +46517,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -46535,12 +46535,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -46551,12 +46551,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -46569,12 +46569,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -46585,12 +46585,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -46603,12 +46603,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -46619,12 +46619,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -46637,12 +46637,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -46653,12 +46653,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -46671,12 +46671,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -46687,12 +46687,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -46705,12 +46705,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -46721,12 +46721,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -46739,12 +46739,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -46755,12 +46755,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -46773,12 +46773,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -46789,12 +46789,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -46807,12 +46807,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -46823,12 +46823,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -46841,12 +46841,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -46857,12 +46857,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -46875,12 +46875,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -46891,12 +46891,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -46909,12 +46909,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -46925,12 +46925,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 38, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -46943,12 +46943,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -46959,12 +46959,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 38, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -46977,12 +46977,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -46993,12 +46993,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 38, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -47011,12 +47011,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -47027,12 +47027,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 38, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -47045,12 +47045,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -47061,12 +47061,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 38, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -47079,12 +47079,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -47095,12 +47095,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 38, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -47113,12 +47113,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -47129,12 +47129,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -47147,12 +47147,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -47163,12 +47163,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -47181,12 +47181,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -47197,12 +47197,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -47215,12 +47215,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -47231,12 +47231,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -47249,12 +47249,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -47265,12 +47265,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -47283,12 +47283,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -47299,12 +47299,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -47317,12 +47317,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -47333,12 +47333,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -47351,12 +47351,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -47367,12 +47367,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -47385,12 +47385,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -47401,12 +47401,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -47419,12 +47419,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -47435,12 +47435,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -47453,12 +47453,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -47469,12 +47469,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -47487,12 +47487,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -47503,12 +47503,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -47521,12 +47521,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -47537,12 +47537,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -47555,12 +47555,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -47571,12 +47571,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -47589,12 +47589,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -47605,12 +47605,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -47623,12 +47623,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -47639,12 +47639,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -47657,12 +47657,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -47673,12 +47673,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -47691,12 +47691,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -47707,12 +47707,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -47725,12 +47725,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -47741,12 +47741,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -47759,12 +47759,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -47775,12 +47775,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -47793,12 +47793,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -47809,12 +47809,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -47827,12 +47827,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -47843,12 +47843,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -47861,12 +47861,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -47877,12 +47877,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -47895,12 +47895,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -47911,12 +47911,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -47929,12 +47929,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -47945,12 +47945,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -47963,12 +47963,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -47979,12 +47979,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -47997,12 +47997,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -48013,12 +48013,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -48031,12 +48031,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -48047,12 +48047,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -48065,12 +48065,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -48081,12 +48081,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -48099,12 +48099,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -48115,12 +48115,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -48133,12 +48133,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -48149,12 +48149,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -48167,12 +48167,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -48183,12 +48183,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -48201,12 +48201,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -48217,12 +48217,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -48235,12 +48235,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -48251,12 +48251,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -48269,12 +48269,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -48285,12 +48285,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -48303,12 +48303,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -48319,12 +48319,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -48337,12 +48337,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -48353,12 +48353,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -48371,12 +48371,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -48387,12 +48387,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -48405,12 +48405,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -48421,12 +48421,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -48439,12 +48439,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -48455,12 +48455,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -48473,12 +48473,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -48489,12 +48489,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 38, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -48507,12 +48507,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -48523,12 +48523,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 38, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -48541,12 +48541,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = b8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -48557,12 +48557,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = b8, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -48575,12 +48575,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = b8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -48591,12 +48591,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = b8, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -48609,12 +48609,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = b8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -48625,12 +48625,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = b8, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -48643,12 +48643,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = b8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -48659,12 +48659,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = b8, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -48677,12 +48677,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -48693,12 +48693,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -48711,12 +48711,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -48727,12 +48727,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -48745,12 +48745,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -48761,12 +48761,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -48779,12 +48779,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -48795,12 +48795,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -48813,12 +48813,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -48829,12 +48829,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -48847,12 +48847,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -48863,12 +48863,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -48881,12 +48881,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -48897,12 +48897,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -48915,12 +48915,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -48931,12 +48931,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -48949,12 +48949,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -48965,12 +48965,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -48983,12 +48983,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -48999,12 +48999,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -49017,12 +49017,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -49033,12 +49033,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -49051,12 +49051,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -49067,12 +49067,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -49085,12 +49085,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -49101,12 +49101,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -49119,12 +49119,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -49135,12 +49135,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -49153,12 +49153,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -49169,12 +49169,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -49187,12 +49187,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -49203,12 +49203,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -49221,12 +49221,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -49237,12 +49237,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -49255,12 +49255,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -49271,12 +49271,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -49289,12 +49289,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -49305,12 +49305,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -49323,12 +49323,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -49339,12 +49339,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -49357,12 +49357,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -49373,12 +49373,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -49391,12 +49391,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -49407,12 +49407,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -49425,12 +49425,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -49441,12 +49441,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -49459,12 +49459,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -49475,12 +49475,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -49493,12 +49493,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -49509,12 +49509,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -49527,12 +49527,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -49543,12 +49543,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -49561,12 +49561,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -49577,12 +49577,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -49595,12 +49595,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -49611,12 +49611,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -49629,12 +49629,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -49645,12 +49645,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -49663,12 +49663,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -49679,12 +49679,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -49697,12 +49697,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -49713,12 +49713,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -49731,12 +49731,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -49747,12 +49747,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -49765,12 +49765,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -49781,12 +49781,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -49799,12 +49799,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -49815,12 +49815,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -49833,12 +49833,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -49849,12 +49849,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -49867,12 +49867,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -49883,12 +49883,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -49901,12 +49901,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -49917,12 +49917,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -49935,12 +49935,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -49951,12 +49951,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -49969,12 +49969,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -49985,12 +49985,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -50003,12 +50003,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -50019,12 +50019,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -50037,12 +50037,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -50053,12 +50053,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 38, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -50071,12 +50071,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -50087,12 +50087,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 78, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -50105,12 +50105,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -50121,12 +50121,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 78, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -50139,12 +50139,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -50155,12 +50155,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 78, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -50173,12 +50173,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -50189,12 +50189,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 78, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -50207,12 +50207,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -50223,12 +50223,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 78, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -50241,12 +50241,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -50257,12 +50257,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -50275,12 +50275,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -50291,12 +50291,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -50309,12 +50309,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -50325,12 +50325,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -50343,12 +50343,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -50359,12 +50359,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -50377,12 +50377,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -50393,12 +50393,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -50411,12 +50411,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -50427,12 +50427,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -50445,12 +50445,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -50461,12 +50461,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -50479,12 +50479,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -50495,12 +50495,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -50513,12 +50513,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -50529,12 +50529,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -50547,12 +50547,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -50563,12 +50563,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -50581,12 +50581,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -50597,12 +50597,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -50615,12 +50615,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -50631,12 +50631,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -50649,12 +50649,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -50665,12 +50665,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -50683,12 +50683,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -50699,12 +50699,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -50717,12 +50717,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -50733,12 +50733,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -50751,12 +50751,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -50767,12 +50767,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -50785,12 +50785,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -50801,12 +50801,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -50819,12 +50819,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -50835,12 +50835,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -50853,12 +50853,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -50869,12 +50869,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -50887,12 +50887,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -50903,12 +50903,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -50921,12 +50921,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -50937,12 +50937,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -50955,12 +50955,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -50971,12 +50971,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -50989,12 +50989,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -51005,12 +51005,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -51023,12 +51023,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -51039,12 +51039,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -51057,12 +51057,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -51073,12 +51073,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -51091,12 +51091,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -51107,12 +51107,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -51125,12 +51125,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -51141,12 +51141,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -51159,12 +51159,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -51175,12 +51175,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -51193,12 +51193,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -51209,12 +51209,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -51227,12 +51227,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -51243,12 +51243,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -51261,12 +51261,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -51277,12 +51277,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -51295,12 +51295,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -51311,12 +51311,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -51329,12 +51329,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -51345,12 +51345,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -51363,12 +51363,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -51379,12 +51379,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -51397,12 +51397,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -51413,12 +51413,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -51431,12 +51431,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -51447,12 +51447,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -51465,12 +51465,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -51481,12 +51481,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -51499,12 +51499,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -51515,12 +51515,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -51533,12 +51533,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -51549,12 +51549,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -51567,12 +51567,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -51583,12 +51583,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -51601,12 +51601,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -51617,12 +51617,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 38, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -51635,12 +51635,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -51651,12 +51651,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 78, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -51669,12 +51669,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -51685,12 +51685,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f8, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -51703,12 +51703,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -51719,12 +51719,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f8, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -51737,12 +51737,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -51753,12 +51753,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f8, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -51771,12 +51771,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -51787,12 +51787,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f8, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -51805,12 +51805,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -51821,12 +51821,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -51839,12 +51839,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -51855,12 +51855,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -51873,12 +51873,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -51889,12 +51889,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -51907,12 +51907,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -51923,12 +51923,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -51941,12 +51941,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -51957,12 +51957,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -51975,12 +51975,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -51991,12 +51991,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -52009,12 +52009,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -52025,12 +52025,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -52043,12 +52043,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -52059,12 +52059,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -52077,12 +52077,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -52093,12 +52093,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -52111,12 +52111,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -52127,12 +52127,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -52145,12 +52145,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -52161,12 +52161,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -52179,12 +52179,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -52195,12 +52195,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -52213,12 +52213,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -52229,12 +52229,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -52247,12 +52247,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -52263,12 +52263,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -52281,12 +52281,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -52297,12 +52297,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -52315,12 +52315,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -52331,12 +52331,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -52349,12 +52349,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -52365,12 +52365,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -52383,12 +52383,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -52399,12 +52399,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -52417,12 +52417,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -52433,12 +52433,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -52451,12 +52451,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -52467,12 +52467,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -52485,12 +52485,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -52501,12 +52501,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -52519,12 +52519,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -52535,12 +52535,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -52553,12 +52553,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -52569,12 +52569,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -52587,12 +52587,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -52603,12 +52603,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -52621,12 +52621,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -52637,12 +52637,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -52655,12 +52655,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -52671,12 +52671,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -52689,12 +52689,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -52705,12 +52705,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -52723,12 +52723,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -52739,12 +52739,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -52757,12 +52757,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -52773,12 +52773,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -52791,12 +52791,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -52807,12 +52807,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -52825,12 +52825,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -52841,12 +52841,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -52859,12 +52859,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -52875,12 +52875,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -52893,12 +52893,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -52909,12 +52909,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -52927,12 +52927,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -52943,12 +52943,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -52961,12 +52961,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -52977,12 +52977,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -52995,12 +52995,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -53011,12 +53011,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -53029,12 +53029,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -53045,12 +53045,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -53063,12 +53063,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -53079,12 +53079,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -53097,12 +53097,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -53113,12 +53113,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -53131,12 +53131,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -53147,12 +53147,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -53165,12 +53165,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -53181,12 +53181,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -53199,12 +53199,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -53215,12 +53215,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -53233,12 +53233,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -53249,12 +53249,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -53267,12 +53267,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -53283,12 +53283,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -53301,12 +53301,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -53317,12 +53317,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -53335,12 +53335,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -53351,12 +53351,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -53369,12 +53369,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -53385,12 +53385,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -53403,12 +53403,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -53419,12 +53419,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -53437,12 +53437,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -53453,12 +53453,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -53471,12 +53471,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -53487,12 +53487,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -53505,12 +53505,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -53521,12 +53521,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -53539,12 +53539,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -53555,12 +53555,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -53573,12 +53573,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -53589,12 +53589,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -53607,12 +53607,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -53623,12 +53623,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -53641,12 +53641,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -53657,12 +53657,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -53675,12 +53675,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -53691,12 +53691,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -53709,12 +53709,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -53725,12 +53725,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -53743,12 +53743,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -53759,12 +53759,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -53777,12 +53777,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -53793,12 +53793,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -53811,12 +53811,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -53827,12 +53827,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -53845,12 +53845,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -53861,12 +53861,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -53879,12 +53879,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -53895,12 +53895,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -53913,12 +53913,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -53929,12 +53929,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -53947,12 +53947,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -53963,12 +53963,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -53981,12 +53981,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -53997,12 +53997,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -54015,12 +54015,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -54031,12 +54031,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -54049,12 +54049,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -54065,12 +54065,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -54083,12 +54083,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -54099,12 +54099,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -54117,12 +54117,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -54133,12 +54133,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -54151,12 +54151,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -54167,12 +54167,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -54185,12 +54185,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -54201,12 +54201,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -54219,12 +54219,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -54235,12 +54235,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -54253,12 +54253,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -54269,12 +54269,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -54287,12 +54287,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -54303,12 +54303,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -54321,12 +54321,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -54337,12 +54337,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -54355,12 +54355,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -54371,12 +54371,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -54389,12 +54389,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -54405,12 +54405,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -54423,12 +54423,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -54439,12 +54439,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -54457,12 +54457,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -54473,12 +54473,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -54491,12 +54491,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -54507,12 +54507,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -54525,12 +54525,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -54541,12 +54541,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -54559,12 +54559,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -54575,12 +54575,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -54593,12 +54593,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -54609,12 +54609,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -54627,12 +54627,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -54643,12 +54643,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -54661,12 +54661,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -54677,12 +54677,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -54695,12 +54695,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -54711,12 +54711,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -54729,12 +54729,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -54745,12 +54745,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -54763,12 +54763,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 84
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -54779,12 +54779,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 84, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -54797,12 +54797,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 84
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -54813,12 +54813,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 84, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -54831,12 +54831,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 84
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -54847,12 +54847,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 84, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -54865,12 +54865,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 84
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -54881,12 +54881,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 84, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -54899,12 +54899,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 84
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -54915,12 +54915,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 84, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -54933,12 +54933,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -54949,12 +54949,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -54967,12 +54967,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -54983,12 +54983,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -55001,12 +55001,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -55017,12 +55017,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -55035,12 +55035,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -55051,12 +55051,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -55069,12 +55069,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -55085,12 +55085,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -55103,12 +55103,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -55119,12 +55119,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -55137,12 +55137,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -55153,12 +55153,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -55171,12 +55171,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -55187,12 +55187,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -55205,12 +55205,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -55221,12 +55221,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -55239,12 +55239,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -55255,12 +55255,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -55273,12 +55273,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -55289,12 +55289,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -55307,12 +55307,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -55323,12 +55323,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -55341,12 +55341,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -55357,12 +55357,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -55375,12 +55375,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -55391,12 +55391,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -55409,12 +55409,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -55425,12 +55425,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -55443,12 +55443,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -55459,12 +55459,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -55477,12 +55477,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -55493,12 +55493,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -55511,12 +55511,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -55527,12 +55527,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -55545,12 +55545,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -55561,12 +55561,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -55579,12 +55579,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -55595,12 +55595,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -55613,12 +55613,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -55629,12 +55629,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -55647,12 +55647,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 84
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -55663,12 +55663,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -55681,12 +55681,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 84
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -55697,12 +55697,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -55715,12 +55715,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 84
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -55731,12 +55731,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -55749,12 +55749,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 84
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -55765,12 +55765,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -55783,12 +55783,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 84
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -55799,12 +55799,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -55817,12 +55817,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 84
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -55833,12 +55833,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -55851,12 +55851,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -55867,12 +55867,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -55885,12 +55885,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -55901,12 +55901,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -55919,12 +55919,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -55935,12 +55935,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -55953,12 +55953,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -55969,12 +55969,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -55987,12 +55987,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -56003,12 +56003,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -56021,12 +56021,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -56037,12 +56037,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -56055,12 +56055,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -56071,12 +56071,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -56089,12 +56089,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -56105,12 +56105,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -56123,12 +56123,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -56139,12 +56139,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -56157,12 +56157,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -56173,12 +56173,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -56191,12 +56191,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -56207,12 +56207,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -56225,12 +56225,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -56241,12 +56241,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -56259,12 +56259,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -56275,12 +56275,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -56293,12 +56293,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -56309,12 +56309,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -56327,12 +56327,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -56343,12 +56343,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -56361,12 +56361,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 44
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -56377,12 +56377,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 44, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -56395,12 +56395,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 44
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -56411,12 +56411,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 44, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -56429,12 +56429,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 44
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -56445,12 +56445,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 44, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -56463,12 +56463,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 44
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -56479,12 +56479,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 44, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -56497,12 +56497,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -56513,12 +56513,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -56531,12 +56531,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -56547,12 +56547,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -56565,12 +56565,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -56581,12 +56581,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -56599,12 +56599,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -56615,12 +56615,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -56633,12 +56633,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -56649,12 +56649,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -56667,12 +56667,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -56683,12 +56683,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -56701,12 +56701,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -56717,12 +56717,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -56735,12 +56735,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -56751,12 +56751,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -56769,12 +56769,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -56785,12 +56785,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -56803,12 +56803,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -56819,12 +56819,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -56837,12 +56837,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -56853,12 +56853,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -56871,12 +56871,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -56887,12 +56887,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -56905,12 +56905,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -56921,12 +56921,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -56939,12 +56939,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -56955,12 +56955,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -56973,12 +56973,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -56989,12 +56989,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -57007,12 +57007,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -57023,12 +57023,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -57041,12 +57041,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -57057,12 +57057,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -57075,12 +57075,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -57091,12 +57091,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -57109,12 +57109,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -57125,12 +57125,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -57143,12 +57143,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -57159,12 +57159,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -57177,12 +57177,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -57193,12 +57193,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -57211,12 +57211,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -57227,12 +57227,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -57245,12 +57245,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -57261,12 +57261,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -57279,12 +57279,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -57295,12 +57295,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -57313,12 +57313,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -57329,12 +57329,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -57347,12 +57347,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -57363,12 +57363,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -57381,12 +57381,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -57397,12 +57397,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -57415,12 +57415,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -57431,12 +57431,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -57449,12 +57449,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -57465,12 +57465,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -57483,12 +57483,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -57499,12 +57499,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -57517,12 +57517,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -57533,12 +57533,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -57551,12 +57551,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -57567,12 +57567,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -57585,12 +57585,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -57601,12 +57601,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -57619,12 +57619,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -57635,12 +57635,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -57653,12 +57653,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -57669,12 +57669,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -57687,12 +57687,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -57703,12 +57703,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -57721,12 +57721,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -57737,12 +57737,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -57755,12 +57755,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -57771,12 +57771,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -57789,12 +57789,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -57805,12 +57805,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -57823,12 +57823,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -57839,12 +57839,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -57857,12 +57857,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -57873,12 +57873,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -57891,12 +57891,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -57907,12 +57907,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -57925,12 +57925,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = c4
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -57941,12 +57941,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c4, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -57959,12 +57959,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = c4
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -57975,12 +57975,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c4, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -57993,12 +57993,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = c4
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -58009,12 +58009,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c4, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -58027,12 +58027,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = c4
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -58043,12 +58043,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c4, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -58061,12 +58061,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -58077,12 +58077,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -58095,12 +58095,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -58111,12 +58111,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -58129,12 +58129,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -58145,12 +58145,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -58163,12 +58163,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -58179,12 +58179,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -58197,12 +58197,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -58213,12 +58213,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -58231,12 +58231,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -58247,12 +58247,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -58265,12 +58265,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -58281,12 +58281,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -58299,12 +58299,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -58315,12 +58315,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -58333,12 +58333,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -58349,12 +58349,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -58367,12 +58367,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -58383,12 +58383,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -58401,12 +58401,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -58417,12 +58417,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -58435,12 +58435,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -58451,12 +58451,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -58469,12 +58469,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -58485,12 +58485,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -58503,12 +58503,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -58519,12 +58519,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -58537,12 +58537,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -58553,12 +58553,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -58571,12 +58571,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -58587,12 +58587,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -58605,12 +58605,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -58621,12 +58621,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -58639,12 +58639,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -58655,12 +58655,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -58673,12 +58673,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -58689,12 +58689,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -58707,12 +58707,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -58723,12 +58723,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -58741,12 +58741,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -58757,12 +58757,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -58775,12 +58775,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 84
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -58791,12 +58791,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -58809,12 +58809,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -58825,12 +58825,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -58843,12 +58843,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -58859,12 +58859,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -58877,12 +58877,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -58893,12 +58893,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -58911,12 +58911,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -58927,12 +58927,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -58945,12 +58945,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -58961,12 +58961,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -58979,12 +58979,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -58995,12 +58995,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -59013,12 +59013,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -59029,12 +59029,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -59047,12 +59047,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -59063,12 +59063,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -59081,12 +59081,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -59097,12 +59097,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -59115,12 +59115,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -59131,12 +59131,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -59149,12 +59149,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -59165,12 +59165,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -59183,12 +59183,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -59199,12 +59199,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -59217,12 +59217,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -59233,12 +59233,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -59251,12 +59251,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -59267,12 +59267,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -59285,12 +59285,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -59301,12 +59301,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -59319,12 +59319,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -59335,12 +59335,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -59353,12 +59353,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -59369,12 +59369,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -59387,12 +59387,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -59403,12 +59403,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -59421,12 +59421,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -59437,12 +59437,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -59455,12 +59455,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 24
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -59471,12 +59471,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 24, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -59489,12 +59489,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 24
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -59505,12 +59505,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 24, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -59523,12 +59523,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 24
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -59539,12 +59539,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 24, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -59557,12 +59557,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 24
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -59573,12 +59573,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 24, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -59591,12 +59591,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 24
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -59607,12 +59607,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 24, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -59625,12 +59625,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -59641,12 +59641,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -59659,12 +59659,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -59675,12 +59675,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -59693,12 +59693,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -59709,12 +59709,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -59727,12 +59727,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -59743,12 +59743,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -59761,12 +59761,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -59777,12 +59777,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -59795,12 +59795,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -59811,12 +59811,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -59829,12 +59829,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -59845,12 +59845,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -59863,12 +59863,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -59879,12 +59879,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -59897,12 +59897,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -59913,12 +59913,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -59931,12 +59931,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -59947,12 +59947,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -59965,12 +59965,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -59981,12 +59981,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -59999,12 +59999,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 24
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -60015,12 +60015,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -60033,12 +60033,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 24
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -60049,12 +60049,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -60067,12 +60067,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 24
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -60083,12 +60083,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -60101,12 +60101,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 24
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -60117,12 +60117,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -60135,12 +60135,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 24
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -60151,12 +60151,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -60169,12 +60169,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 24
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -60185,12 +60185,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -60203,12 +60203,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 24
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -60219,12 +60219,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -60237,12 +60237,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 24
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -60253,12 +60253,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -60271,12 +60271,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 24
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -60287,12 +60287,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -60305,12 +60305,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 24
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -60321,12 +60321,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -60339,12 +60339,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 24
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -60355,12 +60355,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -60373,12 +60373,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 24
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -60389,12 +60389,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -60407,12 +60407,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 24
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -60423,12 +60423,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -60441,12 +60441,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 24
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -60457,12 +60457,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -60475,12 +60475,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 24
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -60491,12 +60491,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -60509,12 +60509,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 24
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -60525,12 +60525,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -60543,12 +60543,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -60559,12 +60559,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -60577,12 +60577,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -60593,12 +60593,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -60611,12 +60611,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -60627,12 +60627,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -60645,12 +60645,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -60661,12 +60661,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -60679,12 +60679,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -60695,12 +60695,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -60713,12 +60713,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -60729,12 +60729,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -60747,12 +60747,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -60763,12 +60763,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -60781,12 +60781,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -60797,12 +60797,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -60815,12 +60815,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -60831,12 +60831,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -60849,12 +60849,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -60865,12 +60865,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -60883,12 +60883,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -60899,12 +60899,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -60917,12 +60917,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -60933,12 +60933,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -60951,12 +60951,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -60967,12 +60967,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -60985,12 +60985,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -61001,12 +61001,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -61019,12 +61019,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -61035,12 +61035,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -61053,12 +61053,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -61069,12 +61069,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -61087,12 +61087,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = a4
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -61103,12 +61103,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a4, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -61121,12 +61121,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = a4
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -61137,12 +61137,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a4, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -61155,12 +61155,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = a4
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -61171,12 +61171,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a4, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -61189,12 +61189,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -61205,12 +61205,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -61223,12 +61223,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -61239,12 +61239,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -61257,12 +61257,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -61273,12 +61273,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -61291,12 +61291,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -61307,12 +61307,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -61325,12 +61325,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -61341,12 +61341,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -61359,12 +61359,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -61375,12 +61375,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -61393,12 +61393,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -61409,12 +61409,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -61427,12 +61427,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -61443,12 +61443,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -61461,12 +61461,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -61477,12 +61477,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -61495,12 +61495,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -61511,12 +61511,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -61529,12 +61529,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -61545,12 +61545,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -61563,12 +61563,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 24
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -61579,12 +61579,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -61597,12 +61597,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 24
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -61613,12 +61613,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -61631,12 +61631,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 24
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -61647,12 +61647,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -61665,12 +61665,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 24
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -61681,12 +61681,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -61699,12 +61699,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 24
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -61715,12 +61715,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -61733,12 +61733,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 24
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -61749,12 +61749,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -61767,12 +61767,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 24
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -61783,12 +61783,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -61801,12 +61801,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 24
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -61817,12 +61817,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -61835,12 +61835,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 24
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -61851,12 +61851,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -61869,12 +61869,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 24
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -61885,12 +61885,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -61903,12 +61903,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 84
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -61919,12 +61919,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -61937,12 +61937,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 84
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -61953,12 +61953,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -61971,12 +61971,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 84
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -61987,12 +61987,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -62005,12 +62005,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 84
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -62021,12 +62021,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -62039,12 +62039,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 84
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -62055,12 +62055,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -62073,12 +62073,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 84
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -62089,12 +62089,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -62107,12 +62107,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -62123,12 +62123,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -62141,12 +62141,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -62157,12 +62157,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -62175,12 +62175,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -62191,12 +62191,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -62209,12 +62209,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -62225,12 +62225,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -62243,12 +62243,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -62259,12 +62259,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -62277,12 +62277,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -62293,12 +62293,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -62311,12 +62311,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -62327,12 +62327,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -62345,12 +62345,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -62361,12 +62361,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -62379,12 +62379,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -62395,12 +62395,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -62413,12 +62413,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -62429,12 +62429,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -62447,12 +62447,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -62463,12 +62463,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -62481,12 +62481,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -62497,12 +62497,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -62515,12 +62515,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -62531,12 +62531,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -62549,12 +62549,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -62565,12 +62565,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -62583,12 +62583,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -62599,12 +62599,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -62617,12 +62617,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -62633,12 +62633,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 64, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -62651,12 +62651,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -62667,12 +62667,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 64, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -62685,12 +62685,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -62701,12 +62701,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 64, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -62719,12 +62719,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -62735,12 +62735,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 64, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -62753,12 +62753,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -62769,12 +62769,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -62787,12 +62787,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -62803,12 +62803,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -62821,12 +62821,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -62837,12 +62837,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -62855,12 +62855,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -62871,12 +62871,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -62889,12 +62889,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -62905,12 +62905,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -62923,12 +62923,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -62939,12 +62939,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -62957,12 +62957,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -62973,12 +62973,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -62991,12 +62991,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -63007,12 +63007,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -63025,12 +63025,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -63041,12 +63041,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -63059,12 +63059,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -63075,12 +63075,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -63093,12 +63093,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -63109,12 +63109,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -63127,12 +63127,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -63143,12 +63143,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -63161,12 +63161,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -63177,12 +63177,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -63195,12 +63195,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -63211,12 +63211,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -63229,12 +63229,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -63245,12 +63245,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -63263,12 +63263,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -63279,12 +63279,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -63297,12 +63297,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -63313,12 +63313,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -63331,12 +63331,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -63347,12 +63347,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -63365,12 +63365,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -63381,12 +63381,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -63399,12 +63399,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -63415,12 +63415,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -63433,12 +63433,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -63449,12 +63449,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -63467,12 +63467,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -63483,12 +63483,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -63501,12 +63501,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -63517,12 +63517,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -63535,12 +63535,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -63551,12 +63551,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -63569,12 +63569,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -63585,12 +63585,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -63603,12 +63603,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -63619,12 +63619,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -63637,12 +63637,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -63653,12 +63653,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -63671,12 +63671,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -63687,12 +63687,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -63705,12 +63705,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -63721,12 +63721,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -63739,12 +63739,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -63755,12 +63755,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -63773,12 +63773,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -63789,12 +63789,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -63807,12 +63807,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -63823,12 +63823,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -63841,12 +63841,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -63857,12 +63857,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -63875,12 +63875,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -63891,12 +63891,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -63909,12 +63909,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -63925,12 +63925,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -63943,12 +63943,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -63959,12 +63959,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -63977,12 +63977,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -63993,12 +63993,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -64011,12 +64011,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -64027,12 +64027,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -64045,12 +64045,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -64061,12 +64061,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -64079,12 +64079,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -64095,12 +64095,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -64113,12 +64113,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -64129,12 +64129,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -64147,12 +64147,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -64163,12 +64163,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -64181,12 +64181,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -64197,12 +64197,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -64215,12 +64215,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = e4
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -64231,12 +64231,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e4, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -64249,12 +64249,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = e4
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -64265,12 +64265,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e4, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -64283,12 +64283,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = e4
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -64299,12 +64299,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e4, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -64317,12 +64317,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -64333,12 +64333,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -64351,12 +64351,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -64367,12 +64367,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -64385,12 +64385,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -64401,12 +64401,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -64419,12 +64419,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -64435,12 +64435,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -64453,12 +64453,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -64469,12 +64469,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -64487,12 +64487,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -64503,12 +64503,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -64521,12 +64521,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -64537,12 +64537,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -64555,12 +64555,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -64571,12 +64571,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -64589,12 +64589,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -64605,12 +64605,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -64623,12 +64623,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -64639,12 +64639,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -64657,12 +64657,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -64673,12 +64673,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -64691,12 +64691,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -64707,12 +64707,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -64725,12 +64725,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -64741,12 +64741,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -64759,12 +64759,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -64775,12 +64775,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -64793,12 +64793,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -64809,12 +64809,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -64827,12 +64827,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -64843,12 +64843,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -64861,12 +64861,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -64877,12 +64877,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -64895,12 +64895,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -64911,12 +64911,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -64929,12 +64929,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -64945,12 +64945,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -64963,12 +64963,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -64979,12 +64979,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -64997,12 +64997,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -65013,12 +65013,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -65031,12 +65031,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -65047,12 +65047,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -65065,12 +65065,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -65081,12 +65081,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -65099,12 +65099,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -65115,12 +65115,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -65133,12 +65133,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -65149,12 +65149,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -65167,12 +65167,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -65183,12 +65183,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -65201,12 +65201,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -65217,12 +65217,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -65235,12 +65235,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -65251,12 +65251,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -65269,12 +65269,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -65285,12 +65285,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -65303,12 +65303,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -65319,12 +65319,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -65337,12 +65337,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -65353,12 +65353,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -65371,12 +65371,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -65387,12 +65387,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -65405,12 +65405,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -65421,12 +65421,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -65439,12 +65439,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -65455,12 +65455,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -65473,12 +65473,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -65489,12 +65489,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -65507,12 +65507,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -65523,12 +65523,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -65541,12 +65541,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -65557,12 +65557,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -65575,12 +65575,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -65591,12 +65591,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -65609,12 +65609,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -65625,12 +65625,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -65643,12 +65643,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -65659,12 +65659,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -65677,12 +65677,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -65693,12 +65693,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 14, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -65711,12 +65711,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -65727,12 +65727,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 14, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -65745,12 +65745,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -65761,12 +65761,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 14, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -65779,12 +65779,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -65795,12 +65795,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 14, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -65813,12 +65813,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -65829,12 +65829,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 14, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -65847,12 +65847,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -65863,12 +65863,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 14, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -65881,12 +65881,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -65897,12 +65897,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -65915,12 +65915,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -65931,12 +65931,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -65949,12 +65949,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -65965,12 +65965,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -65983,12 +65983,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -65999,12 +65999,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -66017,12 +66017,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -66033,12 +66033,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -66051,12 +66051,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -66067,12 +66067,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -66085,12 +66085,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -66101,12 +66101,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -66119,12 +66119,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -66135,12 +66135,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -66153,12 +66153,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -66169,12 +66169,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -66187,12 +66187,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -66203,12 +66203,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -66221,12 +66221,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -66237,12 +66237,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -66255,12 +66255,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -66271,12 +66271,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -66289,12 +66289,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -66305,12 +66305,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -66323,12 +66323,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -66339,12 +66339,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -66357,12 +66357,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -66373,12 +66373,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -66391,12 +66391,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -66407,12 +66407,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -66425,12 +66425,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -66441,12 +66441,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -66459,12 +66459,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -66475,12 +66475,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -66493,12 +66493,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -66509,12 +66509,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -66527,12 +66527,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -66543,12 +66543,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -66561,12 +66561,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -66577,12 +66577,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -66595,12 +66595,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -66611,12 +66611,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -66629,12 +66629,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -66645,12 +66645,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -66663,12 +66663,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -66679,12 +66679,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -66697,12 +66697,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -66713,12 +66713,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -66731,12 +66731,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -66747,12 +66747,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -66765,12 +66765,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -66781,12 +66781,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -66799,12 +66799,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -66815,12 +66815,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -66833,12 +66833,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -66849,12 +66849,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -66867,12 +66867,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -66883,12 +66883,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -66901,12 +66901,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -66917,12 +66917,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -66935,12 +66935,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -66951,12 +66951,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -66969,12 +66969,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -66985,12 +66985,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -67003,12 +67003,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -67019,12 +67019,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -67037,12 +67037,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -67053,12 +67053,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -67071,12 +67071,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -67087,12 +67087,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -67105,12 +67105,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -67121,12 +67121,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -67139,12 +67139,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -67155,12 +67155,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -67173,12 +67173,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -67189,12 +67189,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -67207,12 +67207,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -67223,12 +67223,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -67241,12 +67241,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -67257,12 +67257,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 14, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -67275,12 +67275,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -67291,12 +67291,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 14, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -67309,12 +67309,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -67325,12 +67325,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 14, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -67343,12 +67343,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 94
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -67359,12 +67359,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 94, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -67377,12 +67377,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 94
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -67393,12 +67393,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 94, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -67411,12 +67411,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 94
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -67427,12 +67427,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 94, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -67445,12 +67445,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -67461,12 +67461,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -67479,12 +67479,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -67495,12 +67495,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -67513,12 +67513,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -67529,12 +67529,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -67547,12 +67547,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -67563,12 +67563,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -67581,12 +67581,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -67597,12 +67597,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -67615,12 +67615,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -67631,12 +67631,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -67649,12 +67649,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -67665,12 +67665,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -67683,12 +67683,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -67699,12 +67699,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -67717,12 +67717,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -67733,12 +67733,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -67751,12 +67751,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -67767,12 +67767,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -67785,12 +67785,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -67801,12 +67801,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -67819,12 +67819,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -67835,12 +67835,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -67853,12 +67853,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -67869,12 +67869,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -67887,12 +67887,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -67903,12 +67903,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -67921,12 +67921,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -67937,12 +67937,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -67955,12 +67955,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -67971,12 +67971,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -67989,12 +67989,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -68005,12 +68005,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -68023,12 +68023,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -68039,12 +68039,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -68057,12 +68057,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -68073,12 +68073,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -68091,12 +68091,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -68107,12 +68107,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -68125,12 +68125,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -68141,12 +68141,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -68159,12 +68159,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 84
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -68175,12 +68175,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -68193,12 +68193,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 84
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -68209,12 +68209,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -68227,12 +68227,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 84
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -68243,12 +68243,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -68261,12 +68261,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 84
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -68277,12 +68277,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -68295,12 +68295,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 84
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -68311,12 +68311,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -68329,12 +68329,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 84
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -68345,12 +68345,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -68363,12 +68363,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -68379,12 +68379,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -68397,12 +68397,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -68413,12 +68413,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -68431,12 +68431,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -68447,12 +68447,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -68465,12 +68465,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -68481,12 +68481,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -68499,12 +68499,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -68515,12 +68515,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -68533,12 +68533,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -68549,12 +68549,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -68567,12 +68567,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -68583,12 +68583,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -68601,12 +68601,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -68617,12 +68617,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -68635,12 +68635,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -68651,12 +68651,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -68669,12 +68669,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -68685,12 +68685,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -68703,12 +68703,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -68719,12 +68719,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -68737,12 +68737,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -68753,12 +68753,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -68771,12 +68771,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -68787,12 +68787,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -68805,12 +68805,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -68821,12 +68821,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 14, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -68839,12 +68839,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -68855,12 +68855,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 14, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -68873,12 +68873,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 54
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -68889,12 +68889,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 54, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -68907,12 +68907,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 54
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -68923,12 +68923,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 54, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -68941,12 +68941,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 54
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -68957,12 +68957,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 54, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -68975,12 +68975,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 54
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -68991,12 +68991,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 54, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -69009,12 +69009,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -69025,12 +69025,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -69043,12 +69043,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -69059,12 +69059,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -69077,12 +69077,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -69093,12 +69093,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -69111,12 +69111,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -69127,12 +69127,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -69145,12 +69145,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -69161,12 +69161,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -69179,12 +69179,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -69195,12 +69195,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -69213,12 +69213,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -69229,12 +69229,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -69247,12 +69247,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -69263,12 +69263,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -69281,12 +69281,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -69297,12 +69297,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -69315,12 +69315,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -69331,12 +69331,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -69349,12 +69349,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -69365,12 +69365,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -69383,12 +69383,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -69399,12 +69399,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -69417,12 +69417,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -69433,12 +69433,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -69451,12 +69451,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -69467,12 +69467,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -69485,12 +69485,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -69501,12 +69501,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -69519,12 +69519,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -69535,12 +69535,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -69553,12 +69553,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -69569,12 +69569,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -69587,12 +69587,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -69603,12 +69603,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -69621,12 +69621,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -69637,12 +69637,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -69655,12 +69655,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -69671,12 +69671,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -69689,12 +69689,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -69705,12 +69705,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -69723,12 +69723,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -69739,12 +69739,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -69757,12 +69757,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -69773,12 +69773,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -69791,12 +69791,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -69807,12 +69807,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -69825,12 +69825,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -69841,12 +69841,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -69859,12 +69859,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -69875,12 +69875,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -69893,12 +69893,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 14
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -69909,12 +69909,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -69927,12 +69927,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -69943,12 +69943,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -69961,12 +69961,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -69977,12 +69977,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -69995,12 +69995,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -70011,12 +70011,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -70029,12 +70029,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -70045,12 +70045,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -70063,12 +70063,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -70079,12 +70079,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -70097,12 +70097,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -70113,12 +70113,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -70131,12 +70131,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -70147,12 +70147,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -70165,12 +70165,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -70181,12 +70181,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -70199,12 +70199,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -70215,12 +70215,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -70233,12 +70233,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -70249,12 +70249,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -70267,12 +70267,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -70283,12 +70283,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -70301,12 +70301,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -70317,12 +70317,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -70335,12 +70335,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -70351,12 +70351,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -70369,12 +70369,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -70385,12 +70385,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -70403,12 +70403,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -70419,12 +70419,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -70437,12 +70437,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -70453,12 +70453,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -70471,12 +70471,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = d4
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -70487,12 +70487,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d4, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -70505,12 +70505,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = d4
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -70521,12 +70521,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d4, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -70539,12 +70539,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = d4
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -70555,12 +70555,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d4, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -70573,12 +70573,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -70589,12 +70589,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -70607,12 +70607,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -70623,12 +70623,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -70641,12 +70641,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -70657,12 +70657,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -70675,12 +70675,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -70691,12 +70691,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -70709,12 +70709,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -70725,12 +70725,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -70743,12 +70743,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -70759,12 +70759,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -70777,12 +70777,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -70793,12 +70793,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -70811,12 +70811,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -70827,12 +70827,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -70845,12 +70845,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -70861,12 +70861,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -70879,12 +70879,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -70895,12 +70895,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -70913,12 +70913,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -70929,12 +70929,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -70947,12 +70947,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -70963,12 +70963,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -70981,12 +70981,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -70997,12 +70997,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -71015,12 +71015,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -71031,12 +71031,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -71049,12 +71049,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -71065,12 +71065,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -71083,12 +71083,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -71099,12 +71099,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -71117,12 +71117,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -71133,12 +71133,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -71151,12 +71151,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -71167,12 +71167,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -71185,12 +71185,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -71201,12 +71201,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -71219,12 +71219,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -71235,12 +71235,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -71253,12 +71253,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -71269,12 +71269,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -71287,12 +71287,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -71303,12 +71303,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -71321,12 +71321,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -71337,12 +71337,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -71355,12 +71355,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -71371,12 +71371,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -71389,12 +71389,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -71405,12 +71405,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -71423,12 +71423,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -71439,12 +71439,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -71457,12 +71457,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -71473,12 +71473,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -71491,12 +71491,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -71507,12 +71507,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -71525,12 +71525,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -71541,12 +71541,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -71559,12 +71559,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -71575,12 +71575,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -71593,12 +71593,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -71609,12 +71609,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -71627,12 +71627,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -71643,12 +71643,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -71661,12 +71661,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -71677,12 +71677,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -71695,12 +71695,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -71711,12 +71711,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -71729,12 +71729,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -71745,12 +71745,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -71763,12 +71763,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -71779,12 +71779,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -71797,12 +71797,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -71813,12 +71813,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -71831,12 +71831,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -71847,12 +71847,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -71865,12 +71865,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -71881,12 +71881,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -71899,12 +71899,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -71915,12 +71915,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -71933,12 +71933,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -71949,12 +71949,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -71967,12 +71967,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -71983,12 +71983,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 34, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -72001,12 +72001,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -72017,12 +72017,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 34, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -72035,12 +72035,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -72051,12 +72051,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 34, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -72069,12 +72069,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -72085,12 +72085,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 34, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -72103,12 +72103,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -72119,12 +72119,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 34, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -72137,12 +72137,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -72153,12 +72153,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -72171,12 +72171,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -72187,12 +72187,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -72205,12 +72205,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -72221,12 +72221,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -72239,12 +72239,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -72255,12 +72255,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -72273,12 +72273,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -72289,12 +72289,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -72307,12 +72307,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -72323,12 +72323,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -72341,12 +72341,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -72357,12 +72357,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -72375,12 +72375,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -72391,12 +72391,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -72409,12 +72409,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -72425,12 +72425,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -72443,12 +72443,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -72459,12 +72459,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -72477,12 +72477,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -72493,12 +72493,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -72511,12 +72511,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -72527,12 +72527,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -72545,12 +72545,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -72561,12 +72561,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -72579,12 +72579,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -72595,12 +72595,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -72613,12 +72613,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -72629,12 +72629,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -72647,12 +72647,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -72663,12 +72663,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -72681,12 +72681,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -72697,12 +72697,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -72715,12 +72715,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -72731,12 +72731,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -72749,12 +72749,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -72765,12 +72765,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -72783,12 +72783,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -72799,12 +72799,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -72817,12 +72817,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -72833,12 +72833,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -72851,12 +72851,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -72867,12 +72867,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -72885,12 +72885,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -72901,12 +72901,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -72919,12 +72919,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -72935,12 +72935,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -72953,12 +72953,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -72969,12 +72969,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -72987,12 +72987,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -73003,12 +73003,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -73021,12 +73021,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -73037,12 +73037,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -73055,12 +73055,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -73071,12 +73071,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -73089,12 +73089,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -73105,12 +73105,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -73123,12 +73123,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -73139,12 +73139,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -73157,12 +73157,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -73173,12 +73173,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -73191,12 +73191,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -73207,12 +73207,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -73225,12 +73225,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -73241,12 +73241,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -73259,12 +73259,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -73275,12 +73275,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -73293,12 +73293,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -73309,12 +73309,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -73327,12 +73327,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -73343,12 +73343,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -73361,12 +73361,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -73377,12 +73377,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -73395,12 +73395,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -73411,12 +73411,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -73429,12 +73429,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -73445,12 +73445,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -73463,12 +73463,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -73479,12 +73479,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -73497,12 +73497,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -73513,12 +73513,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -73531,12 +73531,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -73547,12 +73547,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 34, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -73565,12 +73565,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -73581,12 +73581,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 34, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -73599,12 +73599,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = b4
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -73615,12 +73615,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = b4, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -73633,12 +73633,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = b4
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -73649,12 +73649,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = b4, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -73667,12 +73667,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = b4
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -73683,12 +73683,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = b4, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -73701,12 +73701,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -73717,12 +73717,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -73735,12 +73735,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -73751,12 +73751,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -73769,12 +73769,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -73785,12 +73785,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -73803,12 +73803,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -73819,12 +73819,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -73837,12 +73837,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -73853,12 +73853,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -73871,12 +73871,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -73887,12 +73887,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -73905,12 +73905,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -73921,12 +73921,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -73939,12 +73939,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -73955,12 +73955,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -73973,12 +73973,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -73989,12 +73989,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -74007,12 +74007,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -74023,12 +74023,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -74041,12 +74041,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -74057,12 +74057,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -74075,12 +74075,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -74091,12 +74091,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -74109,12 +74109,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -74125,12 +74125,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -74143,12 +74143,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -74159,12 +74159,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -74177,12 +74177,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -74193,12 +74193,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -74211,12 +74211,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -74227,12 +74227,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -74245,12 +74245,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -74261,12 +74261,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -74279,12 +74279,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -74295,12 +74295,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -74313,12 +74313,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -74329,12 +74329,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -74347,12 +74347,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -74363,12 +74363,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -74381,12 +74381,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -74397,12 +74397,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -74415,12 +74415,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -74431,12 +74431,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -74449,12 +74449,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -74465,12 +74465,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -74483,12 +74483,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -74499,12 +74499,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -74517,12 +74517,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -74533,12 +74533,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -74551,12 +74551,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -74567,12 +74567,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -74585,12 +74585,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -74601,12 +74601,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -74619,12 +74619,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -74635,12 +74635,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -74653,12 +74653,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -74669,12 +74669,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -74687,12 +74687,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -74703,12 +74703,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -74721,12 +74721,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -74737,12 +74737,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -74755,12 +74755,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -74771,12 +74771,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -74789,12 +74789,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -74805,12 +74805,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -74823,12 +74823,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -74839,12 +74839,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -74857,12 +74857,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -74873,12 +74873,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -74891,12 +74891,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -74907,12 +74907,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -74925,12 +74925,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -74941,12 +74941,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -74959,12 +74959,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -74975,12 +74975,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -74993,12 +74993,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -75009,12 +75009,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -75027,12 +75027,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -75043,12 +75043,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -75061,12 +75061,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -75077,12 +75077,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 70, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -75095,12 +75095,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -75111,12 +75111,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 70, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -75129,12 +75129,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -75145,12 +75145,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 74, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -75163,12 +75163,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -75179,12 +75179,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 74, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -75197,12 +75197,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -75213,12 +75213,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 74, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -75231,12 +75231,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -75247,12 +75247,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 74, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -75265,12 +75265,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -75281,12 +75281,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -75299,12 +75299,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -75315,12 +75315,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -75333,12 +75333,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -75349,12 +75349,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -75367,12 +75367,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -75383,12 +75383,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -75401,12 +75401,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -75417,12 +75417,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -75435,12 +75435,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -75451,12 +75451,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -75469,12 +75469,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -75485,12 +75485,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -75503,12 +75503,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -75519,12 +75519,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -75537,12 +75537,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -75553,12 +75553,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -75571,12 +75571,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -75587,12 +75587,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -75605,12 +75605,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -75621,12 +75621,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -75639,12 +75639,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -75655,12 +75655,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -75673,12 +75673,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -75689,12 +75689,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -75707,12 +75707,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -75723,12 +75723,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -75741,12 +75741,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -75757,12 +75757,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -75775,12 +75775,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -75791,12 +75791,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -75809,12 +75809,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -75825,12 +75825,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -75843,12 +75843,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -75859,12 +75859,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -75877,12 +75877,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -75893,12 +75893,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -75911,12 +75911,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -75927,12 +75927,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -75945,12 +75945,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -75961,12 +75961,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -75979,12 +75979,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -75995,12 +75995,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -76013,12 +76013,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -76029,12 +76029,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -76047,12 +76047,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -76063,12 +76063,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -76081,12 +76081,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -76097,12 +76097,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -76115,12 +76115,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -76131,12 +76131,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -76149,12 +76149,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -76165,12 +76165,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -76183,12 +76183,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -76199,12 +76199,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -76217,12 +76217,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -76233,12 +76233,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -76251,12 +76251,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -76267,12 +76267,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -76285,12 +76285,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -76301,12 +76301,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -76319,12 +76319,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -76335,12 +76335,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -76353,12 +76353,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -76369,12 +76369,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -76387,12 +76387,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -76403,12 +76403,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -76421,12 +76421,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -76437,12 +76437,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -76455,12 +76455,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -76471,12 +76471,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -76489,12 +76489,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -76505,12 +76505,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -76523,12 +76523,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -76539,12 +76539,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -76557,12 +76557,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -76573,12 +76573,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -76591,12 +76591,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -76607,12 +76607,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -76625,12 +76625,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -76641,12 +76641,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 70, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -76659,12 +76659,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -76675,12 +76675,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -76693,12 +76693,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -76709,12 +76709,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -76727,12 +76727,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = f4
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -76743,12 +76743,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f4, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -76761,12 +76761,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = f4
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -76777,12 +76777,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f4, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -76795,12 +76795,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = f4
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -76811,12 +76811,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f4, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -76829,12 +76829,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -76845,12 +76845,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -76863,12 +76863,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -76879,12 +76879,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -76897,12 +76897,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -76913,12 +76913,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -76931,12 +76931,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -76947,12 +76947,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -76965,12 +76965,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -76981,12 +76981,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -76999,12 +76999,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -77015,12 +77015,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -77033,12 +77033,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -77049,12 +77049,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -77067,12 +77067,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -77083,12 +77083,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -77101,12 +77101,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -77117,12 +77117,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -77135,12 +77135,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -77151,12 +77151,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -77169,12 +77169,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -77185,12 +77185,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -77203,12 +77203,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -77219,12 +77219,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -77237,12 +77237,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -77253,12 +77253,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -77271,12 +77271,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -77287,12 +77287,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -77305,12 +77305,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -77321,12 +77321,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -77339,12 +77339,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -77355,12 +77355,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -77373,12 +77373,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -77389,12 +77389,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -77407,12 +77407,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -77423,12 +77423,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -77441,12 +77441,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -77457,12 +77457,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -77475,12 +77475,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -77491,12 +77491,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -77509,12 +77509,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -77525,12 +77525,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -77543,12 +77543,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -77559,12 +77559,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -77577,12 +77577,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -77593,12 +77593,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -77611,12 +77611,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -77627,12 +77627,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -77645,12 +77645,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -77661,12 +77661,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -77679,12 +77679,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -77695,12 +77695,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -77713,12 +77713,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -77729,12 +77729,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -77747,12 +77747,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -77763,12 +77763,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -77781,12 +77781,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -77797,12 +77797,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -77815,12 +77815,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -77831,12 +77831,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -77849,12 +77849,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -77865,12 +77865,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -77883,12 +77883,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -77899,12 +77899,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -77917,12 +77917,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -77933,12 +77933,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -77951,12 +77951,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -77967,12 +77967,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -77985,12 +77985,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -78001,12 +78001,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -78019,12 +78019,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -78035,12 +78035,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -78053,12 +78053,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -78069,12 +78069,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -78087,12 +78087,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -78103,12 +78103,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -78121,12 +78121,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -78137,12 +78137,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -78155,12 +78155,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -78171,12 +78171,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -78189,12 +78189,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -78205,12 +78205,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -78223,12 +78223,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -78239,12 +78239,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -78257,12 +78257,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -78273,12 +78273,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -78291,12 +78291,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -78307,12 +78307,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -78325,12 +78325,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -78341,12 +78341,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -78359,12 +78359,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -78375,12 +78375,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -78393,12 +78393,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -78409,12 +78409,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -78427,12 +78427,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -78443,12 +78443,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -78461,12 +78461,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -78477,12 +78477,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -78495,12 +78495,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -78511,12 +78511,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -78529,12 +78529,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -78545,12 +78545,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -78563,12 +78563,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -78579,12 +78579,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -78597,12 +78597,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -78613,12 +78613,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -78631,12 +78631,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -78647,12 +78647,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -78665,12 +78665,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -78681,12 +78681,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -78699,12 +78699,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -78715,12 +78715,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -78733,12 +78733,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -78749,12 +78749,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -78767,12 +78767,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -78783,12 +78783,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -78801,12 +78801,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -78817,12 +78817,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -78835,12 +78835,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -78851,12 +78851,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -78869,12 +78869,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -78885,12 +78885,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -78903,12 +78903,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -78919,12 +78919,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -78937,12 +78937,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -78953,12 +78953,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -78971,12 +78971,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -78987,12 +78987,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -79005,12 +79005,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -79021,12 +79021,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -79039,12 +79039,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -79055,12 +79055,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -79073,12 +79073,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -79089,12 +79089,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -79107,12 +79107,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -79123,12 +79123,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -79141,12 +79141,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -79157,12 +79157,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -79175,12 +79175,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -79191,12 +79191,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -79209,12 +79209,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -79225,12 +79225,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -79243,12 +79243,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -79259,12 +79259,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -79277,12 +79277,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -79293,12 +79293,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -79311,12 +79311,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -79327,12 +79327,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -79345,12 +79345,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -79361,12 +79361,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -79379,12 +79379,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -79395,12 +79395,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -79413,12 +79413,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -79429,12 +79429,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -79447,12 +79447,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -79463,12 +79463,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -79481,12 +79481,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -79497,12 +79497,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -79515,12 +79515,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -79531,12 +79531,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -79549,12 +79549,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -79565,12 +79565,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -79583,12 +79583,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -79599,12 +79599,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -79617,12 +79617,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -79633,12 +79633,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -79651,12 +79651,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -79667,12 +79667,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -79685,12 +79685,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -79701,12 +79701,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -79719,12 +79719,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -79735,12 +79735,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -79753,12 +79753,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -79769,12 +79769,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -79787,12 +79787,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -79803,12 +79803,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -79821,12 +79821,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 8c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -79837,12 +79837,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 8c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -79855,12 +79855,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 8c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -79871,12 +79871,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 8c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -79889,12 +79889,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 8c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -79905,12 +79905,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 8c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -79923,12 +79923,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 8c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -79939,12 +79939,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 8c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -79957,12 +79957,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -79973,12 +79973,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -79991,12 +79991,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -80007,12 +80007,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -80025,12 +80025,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -80041,12 +80041,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -80059,12 +80059,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -80075,12 +80075,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -80093,12 +80093,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -80109,12 +80109,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -80127,12 +80127,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -80143,12 +80143,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -80161,12 +80161,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -80177,12 +80177,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -80195,12 +80195,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -80211,12 +80211,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -80229,12 +80229,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -80245,12 +80245,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -80263,12 +80263,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -80279,12 +80279,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -80297,12 +80297,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -80313,12 +80313,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -80331,12 +80331,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -80347,12 +80347,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -80365,12 +80365,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -80381,12 +80381,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -80399,12 +80399,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -80415,12 +80415,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -80433,12 +80433,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -80449,12 +80449,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -80467,12 +80467,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -80483,12 +80483,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -80501,12 +80501,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -80517,12 +80517,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -80535,12 +80535,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -80551,12 +80551,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -80569,12 +80569,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -80585,12 +80585,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -80603,12 +80603,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -80619,12 +80619,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -80637,12 +80637,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -80653,12 +80653,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -80671,12 +80671,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 8c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -80687,12 +80687,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -80705,12 +80705,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 8c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -80721,12 +80721,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -80739,12 +80739,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 8c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -80755,12 +80755,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -80773,12 +80773,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 8c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -80789,12 +80789,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -80807,12 +80807,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 8c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -80823,12 +80823,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -80841,12 +80841,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 8c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -80857,12 +80857,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -80875,12 +80875,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -80891,12 +80891,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -80909,12 +80909,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -80925,12 +80925,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -80943,12 +80943,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -80959,12 +80959,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -80977,12 +80977,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -80993,12 +80993,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -81011,12 +81011,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -81027,12 +81027,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -81045,12 +81045,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -81061,12 +81061,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -81079,12 +81079,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -81095,12 +81095,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -81113,12 +81113,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -81129,12 +81129,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -81147,12 +81147,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -81163,12 +81163,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -81181,12 +81181,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -81197,12 +81197,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -81215,12 +81215,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -81231,12 +81231,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -81249,12 +81249,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -81265,12 +81265,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -81283,12 +81283,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -81299,12 +81299,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -81317,12 +81317,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -81333,12 +81333,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -81351,12 +81351,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -81367,12 +81367,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -81385,12 +81385,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 4c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -81401,12 +81401,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 4c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -81419,12 +81419,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 4c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -81435,12 +81435,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 4c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -81453,12 +81453,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 4c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -81469,12 +81469,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 4c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -81487,12 +81487,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 4c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -81503,12 +81503,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 4c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -81521,12 +81521,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -81537,12 +81537,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -81555,12 +81555,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -81571,12 +81571,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -81589,12 +81589,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -81605,12 +81605,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -81623,12 +81623,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -81639,12 +81639,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -81657,12 +81657,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -81673,12 +81673,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -81691,12 +81691,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -81707,12 +81707,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -81725,12 +81725,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -81741,12 +81741,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -81759,12 +81759,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -81775,12 +81775,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -81793,12 +81793,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -81809,12 +81809,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -81827,12 +81827,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -81843,12 +81843,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -81861,12 +81861,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -81877,12 +81877,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -81895,12 +81895,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -81911,12 +81911,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -81929,12 +81929,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -81945,12 +81945,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -81963,12 +81963,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -81979,12 +81979,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -81997,12 +81997,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -82013,12 +82013,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -82031,12 +82031,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -82047,12 +82047,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -82065,12 +82065,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -82081,12 +82081,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -82099,12 +82099,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -82115,12 +82115,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -82133,12 +82133,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -82149,12 +82149,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -82167,12 +82167,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -82183,12 +82183,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -82201,12 +82201,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -82217,12 +82217,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -82235,12 +82235,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -82251,12 +82251,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -82269,12 +82269,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -82285,12 +82285,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -82303,12 +82303,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -82319,12 +82319,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -82337,12 +82337,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -82353,12 +82353,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -82371,12 +82371,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -82387,12 +82387,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -82405,12 +82405,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -82421,12 +82421,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -82439,12 +82439,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -82455,12 +82455,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -82473,12 +82473,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -82489,12 +82489,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -82507,12 +82507,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -82523,12 +82523,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -82541,12 +82541,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -82557,12 +82557,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -82575,12 +82575,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -82591,12 +82591,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -82609,12 +82609,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -82625,12 +82625,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -82643,12 +82643,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -82659,12 +82659,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -82677,12 +82677,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -82693,12 +82693,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -82711,12 +82711,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -82727,12 +82727,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -82745,12 +82745,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -82761,12 +82761,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -82779,12 +82779,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -82795,12 +82795,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -82813,12 +82813,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -82829,12 +82829,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -82847,12 +82847,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -82863,12 +82863,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -82881,12 +82881,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -82897,12 +82897,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -82915,12 +82915,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -82931,12 +82931,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -82949,12 +82949,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 4c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -82965,12 +82965,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 4c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -82983,12 +82983,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = cc
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -82999,12 +82999,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = cc, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -83017,12 +83017,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = cc
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -83033,12 +83033,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = cc, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -83051,12 +83051,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = cc
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -83067,12 +83067,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = cc, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -83085,12 +83085,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -83101,12 +83101,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -83119,12 +83119,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -83135,12 +83135,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -83153,12 +83153,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -83169,12 +83169,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -83187,12 +83187,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -83203,12 +83203,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -83221,12 +83221,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -83237,12 +83237,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -83255,12 +83255,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -83271,12 +83271,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -83289,12 +83289,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -83305,12 +83305,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -83323,12 +83323,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -83339,12 +83339,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -83357,12 +83357,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -83373,12 +83373,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -83391,12 +83391,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -83407,12 +83407,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -83425,12 +83425,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -83441,12 +83441,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -83459,12 +83459,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -83475,12 +83475,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -83493,12 +83493,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -83509,12 +83509,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -83527,12 +83527,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -83543,12 +83543,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -83561,12 +83561,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -83577,12 +83577,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -83595,12 +83595,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -83611,12 +83611,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -83629,12 +83629,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -83645,12 +83645,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -83663,12 +83663,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -83679,12 +83679,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -83697,12 +83697,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -83713,12 +83713,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -83731,12 +83731,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -83747,12 +83747,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -83765,12 +83765,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -83781,12 +83781,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -83799,12 +83799,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 8c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -83815,12 +83815,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -83833,12 +83833,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 8c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -83849,12 +83849,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -83867,12 +83867,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 8c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -83883,12 +83883,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -83901,12 +83901,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 8c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -83917,12 +83917,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -83935,12 +83935,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 8c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -83951,12 +83951,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -83969,12 +83969,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 8c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -83985,12 +83985,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -84003,12 +84003,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -84019,12 +84019,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -84037,12 +84037,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -84053,12 +84053,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -84071,12 +84071,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -84087,12 +84087,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -84105,12 +84105,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -84121,12 +84121,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -84139,12 +84139,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -84155,12 +84155,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -84173,12 +84173,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -84189,12 +84189,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -84207,12 +84207,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -84223,12 +84223,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -84241,12 +84241,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -84257,12 +84257,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -84275,12 +84275,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -84291,12 +84291,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -84309,12 +84309,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -84325,12 +84325,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -84343,12 +84343,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -84359,12 +84359,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -84377,12 +84377,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -84393,12 +84393,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -84411,12 +84411,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -84427,12 +84427,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -84445,12 +84445,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -84461,12 +84461,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -84479,12 +84479,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 2c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -84495,12 +84495,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 2c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -84513,12 +84513,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 2c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -84529,12 +84529,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 2c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -84547,12 +84547,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 2c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -84563,12 +84563,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 2c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -84581,12 +84581,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 2c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -84597,12 +84597,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 2c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -84615,12 +84615,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 2c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -84631,12 +84631,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 2c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -84649,12 +84649,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -84665,12 +84665,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -84683,12 +84683,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -84699,12 +84699,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -84717,12 +84717,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -84733,12 +84733,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -84751,12 +84751,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -84767,12 +84767,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -84785,12 +84785,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -84801,12 +84801,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -84819,12 +84819,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -84835,12 +84835,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -84853,12 +84853,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -84869,12 +84869,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -84887,12 +84887,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -84903,12 +84903,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -84921,12 +84921,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -84937,12 +84937,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -84955,12 +84955,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -84971,12 +84971,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -84989,12 +84989,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -85005,12 +85005,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -85023,12 +85023,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 2c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -85039,12 +85039,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -85057,12 +85057,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 2c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -85073,12 +85073,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -85091,12 +85091,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 2c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -85107,12 +85107,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -85125,12 +85125,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 2c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -85141,12 +85141,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -85159,12 +85159,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 2c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -85175,12 +85175,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -85193,12 +85193,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 2c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -85209,12 +85209,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -85227,12 +85227,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 2c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -85243,12 +85243,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -85261,12 +85261,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 2c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -85277,12 +85277,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -85295,12 +85295,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 2c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -85311,12 +85311,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -85329,12 +85329,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 2c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -85345,12 +85345,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -85363,12 +85363,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 2c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -85379,12 +85379,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -85397,12 +85397,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 2c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -85413,12 +85413,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -85431,12 +85431,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 2c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -85447,12 +85447,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -85465,12 +85465,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 2c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -85481,12 +85481,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -85499,12 +85499,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 2c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -85515,12 +85515,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -85533,12 +85533,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 2c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -85549,12 +85549,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -85567,12 +85567,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -85583,12 +85583,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -85601,12 +85601,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -85617,12 +85617,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -85635,12 +85635,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -85651,12 +85651,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -85669,12 +85669,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -85685,12 +85685,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -85703,12 +85703,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -85719,12 +85719,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -85737,12 +85737,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -85753,12 +85753,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -85771,12 +85771,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -85787,12 +85787,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -85805,12 +85805,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -85821,12 +85821,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -85839,12 +85839,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -85855,12 +85855,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -85873,12 +85873,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -85889,12 +85889,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -85907,12 +85907,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -85923,12 +85923,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -85941,12 +85941,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -85957,12 +85957,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -85975,12 +85975,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -85991,12 +85991,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -86009,12 +86009,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -86025,12 +86025,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -86043,12 +86043,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 2c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -86059,12 +86059,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 2c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -86077,12 +86077,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 2c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -86093,12 +86093,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 2c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -86111,12 +86111,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = ac
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -86127,12 +86127,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = ac, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -86145,12 +86145,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = ac
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -86161,12 +86161,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = ac, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -86179,12 +86179,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = ac
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -86195,12 +86195,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = ac, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -86213,12 +86213,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -86229,12 +86229,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -86247,12 +86247,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -86263,12 +86263,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -86281,12 +86281,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -86297,12 +86297,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -86315,12 +86315,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -86331,12 +86331,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -86349,12 +86349,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -86365,12 +86365,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -86383,12 +86383,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -86399,12 +86399,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -86417,12 +86417,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -86433,12 +86433,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -86451,12 +86451,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -86467,12 +86467,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -86485,12 +86485,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -86501,12 +86501,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -86519,12 +86519,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -86535,12 +86535,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -86553,12 +86553,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -86569,12 +86569,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -86587,12 +86587,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 2c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -86603,12 +86603,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -86621,12 +86621,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 2c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -86637,12 +86637,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -86655,12 +86655,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 2c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -86671,12 +86671,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -86689,12 +86689,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 2c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -86705,12 +86705,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -86723,12 +86723,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 2c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -86739,12 +86739,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -86757,12 +86757,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 2c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -86773,12 +86773,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -86791,12 +86791,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 2c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -86807,12 +86807,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -86825,12 +86825,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 2c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -86841,12 +86841,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -86859,12 +86859,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 2c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -86875,12 +86875,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -86893,12 +86893,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 2c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -86909,12 +86909,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -86927,12 +86927,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 8c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -86943,12 +86943,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -86961,12 +86961,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 8c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -86977,12 +86977,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -86995,12 +86995,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 8c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -87011,12 +87011,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -87029,12 +87029,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 8c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -87045,12 +87045,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -87063,12 +87063,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 8c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -87079,12 +87079,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -87097,12 +87097,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 8c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -87113,12 +87113,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -87131,12 +87131,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -87147,12 +87147,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -87165,12 +87165,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -87181,12 +87181,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -87199,12 +87199,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -87215,12 +87215,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -87233,12 +87233,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -87249,12 +87249,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -87267,12 +87267,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -87283,12 +87283,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -87301,12 +87301,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -87317,12 +87317,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -87335,12 +87335,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -87351,12 +87351,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -87369,12 +87369,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -87385,12 +87385,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -87403,12 +87403,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -87419,12 +87419,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -87437,12 +87437,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -87453,12 +87453,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -87471,12 +87471,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -87487,12 +87487,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -87505,12 +87505,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -87521,12 +87521,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -87539,12 +87539,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -87555,12 +87555,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -87573,12 +87573,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -87589,12 +87589,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -87607,12 +87607,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 2c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -87623,12 +87623,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 2c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -87641,12 +87641,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -87657,12 +87657,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 6c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -87675,12 +87675,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -87691,12 +87691,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 6c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -87709,12 +87709,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -87725,12 +87725,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 6c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -87743,12 +87743,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -87759,12 +87759,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 6c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -87777,12 +87777,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -87793,12 +87793,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -87811,12 +87811,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -87827,12 +87827,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -87845,12 +87845,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -87861,12 +87861,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -87879,12 +87879,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -87895,12 +87895,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -87913,12 +87913,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -87929,12 +87929,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -87947,12 +87947,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -87963,12 +87963,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -87981,12 +87981,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -87997,12 +87997,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -88015,12 +88015,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -88031,12 +88031,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -88049,12 +88049,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -88065,12 +88065,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -88083,12 +88083,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -88099,12 +88099,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -88117,12 +88117,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -88133,12 +88133,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -88151,12 +88151,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -88167,12 +88167,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -88185,12 +88185,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -88201,12 +88201,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -88219,12 +88219,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -88235,12 +88235,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -88253,12 +88253,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -88269,12 +88269,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -88287,12 +88287,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -88303,12 +88303,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -88321,12 +88321,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -88337,12 +88337,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -88355,12 +88355,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -88371,12 +88371,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -88389,12 +88389,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -88405,12 +88405,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -88423,12 +88423,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -88439,12 +88439,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -88457,12 +88457,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -88473,12 +88473,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -88491,12 +88491,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -88507,12 +88507,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -88525,12 +88525,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -88541,12 +88541,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -88559,12 +88559,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -88575,12 +88575,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -88593,12 +88593,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -88609,12 +88609,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -88627,12 +88627,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -88643,12 +88643,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -88661,12 +88661,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -88677,12 +88677,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -88695,12 +88695,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -88711,12 +88711,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -88729,12 +88729,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -88745,12 +88745,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -88763,12 +88763,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -88779,12 +88779,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -88797,12 +88797,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -88813,12 +88813,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -88831,12 +88831,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -88847,12 +88847,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -88865,12 +88865,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -88881,12 +88881,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -88899,12 +88899,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -88915,12 +88915,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -88933,12 +88933,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -88949,12 +88949,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -88967,12 +88967,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -88983,12 +88983,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -89001,12 +89001,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -89017,12 +89017,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -89035,12 +89035,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -89051,12 +89051,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -89069,12 +89069,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -89085,12 +89085,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -89103,12 +89103,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -89119,12 +89119,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -89137,12 +89137,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -89153,12 +89153,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -89171,12 +89171,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -89187,12 +89187,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -89205,12 +89205,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -89221,12 +89221,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 6c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -89239,12 +89239,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = ec
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -89255,12 +89255,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = ec, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -89273,12 +89273,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = ec
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -89289,12 +89289,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = ec, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -89307,12 +89307,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = ec
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -89323,12 +89323,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = ec, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -89341,12 +89341,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -89357,12 +89357,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -89375,12 +89375,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -89391,12 +89391,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -89409,12 +89409,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -89425,12 +89425,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -89443,12 +89443,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -89459,12 +89459,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -89477,12 +89477,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -89493,12 +89493,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -89511,12 +89511,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -89527,12 +89527,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -89545,12 +89545,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -89561,12 +89561,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -89579,12 +89579,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -89595,12 +89595,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -89613,12 +89613,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -89629,12 +89629,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -89647,12 +89647,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -89663,12 +89663,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -89681,12 +89681,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -89697,12 +89697,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -89715,12 +89715,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -89731,12 +89731,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -89749,12 +89749,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -89765,12 +89765,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -89783,12 +89783,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -89799,12 +89799,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -89817,12 +89817,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -89833,12 +89833,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -89851,12 +89851,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -89867,12 +89867,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -89885,12 +89885,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -89901,12 +89901,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -89919,12 +89919,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -89935,12 +89935,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -89953,12 +89953,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -89969,12 +89969,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -89987,12 +89987,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -90003,12 +90003,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -90021,12 +90021,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -90037,12 +90037,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -90055,12 +90055,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -90071,12 +90071,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -90089,12 +90089,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -90105,12 +90105,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -90123,12 +90123,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -90139,12 +90139,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -90157,12 +90157,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -90173,12 +90173,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -90191,12 +90191,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -90207,12 +90207,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -90225,12 +90225,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -90241,12 +90241,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -90259,12 +90259,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -90275,12 +90275,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -90293,12 +90293,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -90309,12 +90309,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -90327,12 +90327,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -90343,12 +90343,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -90361,12 +90361,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -90377,12 +90377,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -90395,12 +90395,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -90411,12 +90411,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -90429,12 +90429,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -90445,12 +90445,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -90463,12 +90463,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -90479,12 +90479,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -90497,12 +90497,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -90513,12 +90513,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -90531,12 +90531,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -90547,12 +90547,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -90565,12 +90565,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -90581,12 +90581,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -90599,12 +90599,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -90615,12 +90615,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -90633,12 +90633,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -90649,12 +90649,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -90667,12 +90667,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -90683,12 +90683,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -90701,12 +90701,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -90717,12 +90717,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -90735,12 +90735,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -90751,12 +90751,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -90769,12 +90769,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -90785,12 +90785,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -90803,12 +90803,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -90819,12 +90819,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -90837,12 +90837,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -90853,12 +90853,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -90871,12 +90871,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -90887,12 +90887,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -90905,12 +90905,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -90921,12 +90921,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -90939,12 +90939,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -90955,12 +90955,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -90973,12 +90973,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -90989,12 +90989,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -91007,12 +91007,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -91023,12 +91023,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -91041,12 +91041,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -91057,12 +91057,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -91075,12 +91075,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -91091,12 +91091,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -91109,12 +91109,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -91125,12 +91125,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -91143,12 +91143,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -91159,12 +91159,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -91177,12 +91177,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -91193,12 +91193,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -91211,12 +91211,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -91227,12 +91227,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -91245,12 +91245,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -91261,12 +91261,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -91279,12 +91279,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -91295,12 +91295,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -91313,12 +91313,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -91329,12 +91329,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -91347,12 +91347,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -91363,12 +91363,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -91381,12 +91381,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -91397,12 +91397,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -91415,12 +91415,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -91431,12 +91431,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -91449,12 +91449,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -91465,12 +91465,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -91483,12 +91483,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -91499,12 +91499,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -91517,12 +91517,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -91533,12 +91533,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -91551,12 +91551,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -91567,12 +91567,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -91585,12 +91585,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -91601,12 +91601,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -91619,12 +91619,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -91635,12 +91635,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -91653,12 +91653,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -91669,12 +91669,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -91687,12 +91687,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -91703,12 +91703,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -91721,12 +91721,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -91737,12 +91737,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -91755,12 +91755,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -91771,12 +91771,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -91789,12 +91789,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -91805,12 +91805,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -91823,12 +91823,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -91839,12 +91839,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -91857,12 +91857,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -91873,12 +91873,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -91891,12 +91891,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -91907,12 +91907,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -91925,12 +91925,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -91941,12 +91941,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -91959,12 +91959,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -91975,12 +91975,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -91993,12 +91993,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -92009,12 +92009,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -92027,12 +92027,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -92043,12 +92043,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -92061,12 +92061,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -92077,12 +92077,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -92095,12 +92095,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -92111,12 +92111,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -92129,12 +92129,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -92145,12 +92145,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -92163,12 +92163,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -92179,12 +92179,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -92197,12 +92197,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -92213,12 +92213,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -92231,12 +92231,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -92247,12 +92247,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -92265,12 +92265,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -92281,12 +92281,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -92299,12 +92299,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -92315,12 +92315,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -92333,12 +92333,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -92349,12 +92349,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -92367,12 +92367,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 9c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -92383,12 +92383,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 9c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -92401,12 +92401,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 9c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -92417,12 +92417,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 9c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -92435,12 +92435,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 9c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -92451,12 +92451,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 9c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -92469,12 +92469,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -92485,12 +92485,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -92503,12 +92503,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -92519,12 +92519,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -92537,12 +92537,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -92553,12 +92553,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -92571,12 +92571,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -92587,12 +92587,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -92605,12 +92605,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -92621,12 +92621,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -92639,12 +92639,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -92655,12 +92655,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -92673,12 +92673,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -92689,12 +92689,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -92707,12 +92707,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -92723,12 +92723,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -92741,12 +92741,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -92757,12 +92757,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -92775,12 +92775,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -92791,12 +92791,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -92809,12 +92809,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -92825,12 +92825,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -92843,12 +92843,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -92859,12 +92859,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -92877,12 +92877,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -92893,12 +92893,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -92911,12 +92911,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -92927,12 +92927,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -92945,12 +92945,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -92961,12 +92961,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -92979,12 +92979,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -92995,12 +92995,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -93013,12 +93013,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -93029,12 +93029,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -93047,12 +93047,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -93063,12 +93063,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -93081,12 +93081,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -93097,12 +93097,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -93115,12 +93115,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -93131,12 +93131,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -93149,12 +93149,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -93165,12 +93165,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -93183,12 +93183,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 8c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -93199,12 +93199,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -93217,12 +93217,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -93233,12 +93233,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -93251,12 +93251,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -93267,12 +93267,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -93285,12 +93285,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -93301,12 +93301,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -93319,12 +93319,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -93335,12 +93335,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -93353,12 +93353,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -93369,12 +93369,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -93387,12 +93387,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -93403,12 +93403,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -93421,12 +93421,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -93437,12 +93437,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -93455,12 +93455,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -93471,12 +93471,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -93489,12 +93489,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -93505,12 +93505,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -93523,12 +93523,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -93539,12 +93539,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -93557,12 +93557,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -93573,12 +93573,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -93591,12 +93591,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -93607,12 +93607,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -93625,12 +93625,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -93641,12 +93641,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -93659,12 +93659,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -93675,12 +93675,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -93693,12 +93693,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -93709,12 +93709,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -93727,12 +93727,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -93743,12 +93743,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -93761,12 +93761,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -93777,12 +93777,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -93795,12 +93795,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -93811,12 +93811,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -93829,12 +93829,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -93845,12 +93845,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -93863,12 +93863,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -93879,12 +93879,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -93897,12 +93897,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 5c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -93913,12 +93913,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 5c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -93931,12 +93931,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 5c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -93947,12 +93947,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 5c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -93965,12 +93965,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 5c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -93981,12 +93981,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 5c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -93999,12 +93999,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 5c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -94015,12 +94015,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 5c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -94033,12 +94033,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -94049,12 +94049,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -94067,12 +94067,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -94083,12 +94083,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -94101,12 +94101,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -94117,12 +94117,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -94135,12 +94135,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -94151,12 +94151,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -94169,12 +94169,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -94185,12 +94185,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -94203,12 +94203,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -94219,12 +94219,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -94237,12 +94237,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -94253,12 +94253,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -94271,12 +94271,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -94287,12 +94287,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -94305,12 +94305,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -94321,12 +94321,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -94339,12 +94339,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -94355,12 +94355,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -94373,12 +94373,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -94389,12 +94389,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -94407,12 +94407,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -94423,12 +94423,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -94441,12 +94441,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -94457,12 +94457,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -94475,12 +94475,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -94491,12 +94491,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -94509,12 +94509,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -94525,12 +94525,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -94543,12 +94543,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -94559,12 +94559,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -94577,12 +94577,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -94593,12 +94593,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -94611,12 +94611,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -94627,12 +94627,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -94645,12 +94645,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -94661,12 +94661,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -94679,12 +94679,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -94695,12 +94695,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -94713,12 +94713,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -94729,12 +94729,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -94747,12 +94747,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -94763,12 +94763,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -94781,12 +94781,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -94797,12 +94797,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -94815,12 +94815,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -94831,12 +94831,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -94849,12 +94849,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -94865,12 +94865,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -94883,12 +94883,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -94899,12 +94899,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -94917,12 +94917,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -94933,12 +94933,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -94951,12 +94951,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -94967,12 +94967,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -94985,12 +94985,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -95001,12 +95001,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -95019,12 +95019,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -95035,12 +95035,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -95053,12 +95053,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -95069,12 +95069,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -95087,12 +95087,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -95103,12 +95103,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -95121,12 +95121,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -95137,12 +95137,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -95155,12 +95155,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -95171,12 +95171,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -95189,12 +95189,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -95205,12 +95205,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -95223,12 +95223,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -95239,12 +95239,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -95257,12 +95257,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -95273,12 +95273,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -95291,12 +95291,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -95307,12 +95307,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -95325,12 +95325,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -95341,12 +95341,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -95359,12 +95359,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -95375,12 +95375,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -95393,12 +95393,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -95409,12 +95409,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -95427,12 +95427,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -95443,12 +95443,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -95461,12 +95461,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 5c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -95477,12 +95477,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 5c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -95495,12 +95495,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = dc
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -95511,12 +95511,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = dc, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -95529,12 +95529,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = dc
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -95545,12 +95545,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = dc, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -95563,12 +95563,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = dc
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -95579,12 +95579,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = dc, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -95597,12 +95597,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -95613,12 +95613,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -95631,12 +95631,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -95647,12 +95647,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -95665,12 +95665,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -95681,12 +95681,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -95699,12 +95699,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -95715,12 +95715,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -95733,12 +95733,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -95749,12 +95749,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -95767,12 +95767,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -95783,12 +95783,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -95801,12 +95801,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -95817,12 +95817,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -95835,12 +95835,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -95851,12 +95851,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -95869,12 +95869,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -95885,12 +95885,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -95903,12 +95903,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -95919,12 +95919,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -95937,12 +95937,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -95953,12 +95953,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -95971,12 +95971,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -95987,12 +95987,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -96005,12 +96005,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -96021,12 +96021,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -96039,12 +96039,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -96055,12 +96055,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -96073,12 +96073,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -96089,12 +96089,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -96107,12 +96107,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -96123,12 +96123,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -96141,12 +96141,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -96157,12 +96157,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -96175,12 +96175,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -96191,12 +96191,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -96209,12 +96209,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -96225,12 +96225,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -96243,12 +96243,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -96259,12 +96259,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -96277,12 +96277,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -96293,12 +96293,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -96311,12 +96311,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -96327,12 +96327,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -96345,12 +96345,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -96361,12 +96361,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -96379,12 +96379,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -96395,12 +96395,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -96413,12 +96413,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -96429,12 +96429,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -96447,12 +96447,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -96463,12 +96463,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -96481,12 +96481,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -96497,12 +96497,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -96515,12 +96515,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -96531,12 +96531,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -96549,12 +96549,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -96565,12 +96565,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -96583,12 +96583,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -96599,12 +96599,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -96617,12 +96617,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -96633,12 +96633,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -96651,12 +96651,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -96667,12 +96667,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -96685,12 +96685,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -96701,12 +96701,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -96719,12 +96719,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -96735,12 +96735,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -96753,12 +96753,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -96769,12 +96769,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -96787,12 +96787,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -96803,12 +96803,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -96821,12 +96821,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -96837,12 +96837,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -96855,12 +96855,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -96871,12 +96871,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -96889,12 +96889,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -96905,12 +96905,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -96923,12 +96923,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -96939,12 +96939,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -96957,12 +96957,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -96973,12 +96973,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -96991,12 +96991,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -97007,12 +97007,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -97025,12 +97025,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -97041,12 +97041,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -97059,12 +97059,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -97075,12 +97075,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -97093,12 +97093,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -97109,12 +97109,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -97127,12 +97127,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -97143,12 +97143,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -97161,12 +97161,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -97177,12 +97177,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -97195,12 +97195,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -97211,12 +97211,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -97229,12 +97229,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -97245,12 +97245,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -97263,12 +97263,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -97279,12 +97279,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -97297,12 +97297,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -97313,12 +97313,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -97331,12 +97331,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -97347,12 +97347,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -97365,12 +97365,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -97381,12 +97381,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -97399,12 +97399,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -97415,12 +97415,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -97433,12 +97433,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -97449,12 +97449,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -97467,12 +97467,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -97483,12 +97483,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -97501,12 +97501,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -97517,12 +97517,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -97535,12 +97535,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -97551,12 +97551,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -97569,12 +97569,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -97585,12 +97585,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -97603,12 +97603,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -97619,12 +97619,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -97637,12 +97637,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -97653,12 +97653,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -97671,12 +97671,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -97687,12 +97687,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -97705,12 +97705,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -97721,12 +97721,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -97739,12 +97739,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -97755,12 +97755,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -97773,12 +97773,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -97789,12 +97789,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -97807,12 +97807,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -97823,12 +97823,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -97841,12 +97841,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -97857,12 +97857,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -97875,12 +97875,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -97891,12 +97891,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -97909,12 +97909,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -97925,12 +97925,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -97943,12 +97943,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -97959,12 +97959,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -97977,12 +97977,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -97993,12 +97993,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -98011,12 +98011,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -98027,12 +98027,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -98045,12 +98045,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -98061,12 +98061,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -98079,12 +98079,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -98095,12 +98095,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -98113,12 +98113,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -98129,12 +98129,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -98147,12 +98147,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -98163,12 +98163,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -98181,12 +98181,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -98197,12 +98197,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -98215,12 +98215,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -98231,12 +98231,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -98249,12 +98249,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -98265,12 +98265,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -98283,12 +98283,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -98299,12 +98299,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -98317,12 +98317,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -98333,12 +98333,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -98351,12 +98351,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -98367,12 +98367,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -98385,12 +98385,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -98401,12 +98401,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -98419,12 +98419,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -98435,12 +98435,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -98453,12 +98453,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -98469,12 +98469,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -98487,12 +98487,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -98503,12 +98503,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -98521,12 +98521,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -98537,12 +98537,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -98555,12 +98555,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -98571,12 +98571,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -98589,12 +98589,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -98605,12 +98605,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -98623,12 +98623,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = bc
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -98639,12 +98639,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = bc, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -98657,12 +98657,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = bc
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -98673,12 +98673,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = bc, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -98691,12 +98691,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = bc
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -98707,12 +98707,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = bc, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -98725,12 +98725,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -98741,12 +98741,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -98759,12 +98759,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -98775,12 +98775,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -98793,12 +98793,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -98809,12 +98809,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -98827,12 +98827,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -98843,12 +98843,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -98861,12 +98861,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -98877,12 +98877,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -98895,12 +98895,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -98911,12 +98911,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -98929,12 +98929,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -98945,12 +98945,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -98963,12 +98963,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -98979,12 +98979,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -98997,12 +98997,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -99013,12 +99013,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -99031,12 +99031,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -99047,12 +99047,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -99065,12 +99065,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -99081,12 +99081,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -99099,12 +99099,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -99115,12 +99115,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -99133,12 +99133,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -99149,12 +99149,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -99167,12 +99167,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -99183,12 +99183,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -99201,12 +99201,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -99217,12 +99217,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -99235,12 +99235,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -99251,12 +99251,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -99269,12 +99269,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -99285,12 +99285,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -99303,12 +99303,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -99319,12 +99319,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -99337,12 +99337,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -99353,12 +99353,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -99371,12 +99371,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -99387,12 +99387,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -99405,12 +99405,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -99421,12 +99421,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -99439,12 +99439,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -99455,12 +99455,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -99473,12 +99473,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -99489,12 +99489,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -99507,12 +99507,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -99523,12 +99523,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -99541,12 +99541,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -99557,12 +99557,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -99575,12 +99575,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -99591,12 +99591,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -99609,12 +99609,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -99625,12 +99625,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -99643,12 +99643,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -99659,12 +99659,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -99677,12 +99677,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -99693,12 +99693,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -99711,12 +99711,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -99727,12 +99727,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -99745,12 +99745,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -99761,12 +99761,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -99779,12 +99779,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -99795,12 +99795,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -99813,12 +99813,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -99829,12 +99829,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -99847,12 +99847,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -99863,12 +99863,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -99881,12 +99881,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -99897,12 +99897,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -99915,12 +99915,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -99931,12 +99931,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -99949,12 +99949,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -99965,12 +99965,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -99983,12 +99983,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -99999,12 +99999,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -100017,12 +100017,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -100033,12 +100033,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -100051,12 +100051,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -100067,12 +100067,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -100085,12 +100085,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -100101,12 +100101,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -100119,12 +100119,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -100135,12 +100135,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -100153,12 +100153,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -100169,12 +100169,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 7c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -100187,12 +100187,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -100203,12 +100203,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 7c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -100221,12 +100221,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -100237,12 +100237,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 7c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -100255,12 +100255,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -100271,12 +100271,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 7c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -100289,12 +100289,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -100305,12 +100305,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -100323,12 +100323,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -100339,12 +100339,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -100357,12 +100357,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -100373,12 +100373,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -100391,12 +100391,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -100407,12 +100407,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -100425,12 +100425,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -100441,12 +100441,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -100459,12 +100459,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -100475,12 +100475,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -100493,12 +100493,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -100509,12 +100509,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -100527,12 +100527,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -100543,12 +100543,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -100561,12 +100561,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -100577,12 +100577,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -100595,12 +100595,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -100611,12 +100611,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -100629,12 +100629,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -100645,12 +100645,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -100663,12 +100663,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -100679,12 +100679,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -100697,12 +100697,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -100713,12 +100713,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -100731,12 +100731,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -100747,12 +100747,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -100765,12 +100765,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -100781,12 +100781,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -100799,12 +100799,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -100815,12 +100815,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -100833,12 +100833,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -100849,12 +100849,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -100867,12 +100867,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -100883,12 +100883,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -100901,12 +100901,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -100917,12 +100917,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -100935,12 +100935,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -100951,12 +100951,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -100969,12 +100969,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -100985,12 +100985,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -101003,12 +101003,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -101019,12 +101019,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -101037,12 +101037,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -101053,12 +101053,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -101071,12 +101071,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -101087,12 +101087,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -101105,12 +101105,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -101121,12 +101121,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -101139,12 +101139,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -101155,12 +101155,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -101173,12 +101173,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -101189,12 +101189,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -101207,12 +101207,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -101223,12 +101223,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -101241,12 +101241,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -101257,12 +101257,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -101275,12 +101275,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -101291,12 +101291,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -101309,12 +101309,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -101325,12 +101325,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -101343,12 +101343,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -101359,12 +101359,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -101377,12 +101377,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -101393,12 +101393,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -101411,12 +101411,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -101427,12 +101427,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -101445,12 +101445,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -101461,12 +101461,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -101479,12 +101479,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -101495,12 +101495,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -101513,12 +101513,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -101529,12 +101529,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -101547,12 +101547,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -101563,12 +101563,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -101581,12 +101581,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -101597,12 +101597,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -101615,12 +101615,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -101631,12 +101631,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -101649,12 +101649,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -101665,12 +101665,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -101683,12 +101683,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -101699,12 +101699,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -101717,12 +101717,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -101733,12 +101733,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 7c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -101751,12 +101751,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = fc
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -101767,12 +101767,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = fc, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -101785,12 +101785,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = fc
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -101801,12 +101801,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = fc, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -101819,12 +101819,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = fc
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -101835,12 +101835,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = fc, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -101853,12 +101853,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -101869,12 +101869,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -101887,12 +101887,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -101903,12 +101903,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -101921,12 +101921,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -101937,12 +101937,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -101955,12 +101955,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -101971,12 +101971,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -101989,12 +101989,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -102005,12 +102005,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -102023,12 +102023,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -102039,12 +102039,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -102057,12 +102057,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -102073,12 +102073,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -102091,12 +102091,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -102107,12 +102107,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -102125,12 +102125,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -102141,12 +102141,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -102159,12 +102159,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -102175,12 +102175,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -102193,12 +102193,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -102209,12 +102209,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -102227,12 +102227,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -102243,12 +102243,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -102261,12 +102261,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -102277,12 +102277,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -102295,12 +102295,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -102311,12 +102311,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -102329,12 +102329,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -102345,12 +102345,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -102363,12 +102363,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -102379,12 +102379,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -102397,12 +102397,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -102413,12 +102413,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -102431,12 +102431,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -102447,12 +102447,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -102465,12 +102465,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -102481,12 +102481,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -102499,12 +102499,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -102515,12 +102515,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -102533,12 +102533,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -102549,12 +102549,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -102567,12 +102567,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = fc
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -102583,12 +102583,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -102601,12 +102601,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = fc
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -102617,12 +102617,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -102635,12 +102635,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = fc
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -102651,12 +102651,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -102669,12 +102669,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = fc
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -102685,12 +102685,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -102703,12 +102703,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = fc
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -102719,12 +102719,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -102737,12 +102737,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = fc
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -102753,12 +102753,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -102771,12 +102771,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -102787,12 +102787,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -102805,12 +102805,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -102821,12 +102821,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -102839,12 +102839,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -102855,12 +102855,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -102873,12 +102873,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -102889,12 +102889,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -102907,12 +102907,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -102923,12 +102923,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -102941,12 +102941,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -102957,12 +102957,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -102975,12 +102975,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -102991,12 +102991,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -103009,12 +103009,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -103025,12 +103025,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -103043,12 +103043,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -103059,12 +103059,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -103077,12 +103077,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -103093,12 +103093,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -103111,12 +103111,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -103127,12 +103127,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -103145,12 +103145,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -103161,12 +103161,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -103179,12 +103179,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -103195,12 +103195,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -103213,12 +103213,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -103229,12 +103229,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -103247,12 +103247,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -103263,12 +103263,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -103281,12 +103281,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -103297,12 +103297,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -103315,12 +103315,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -103331,12 +103331,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -103349,12 +103349,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -103365,12 +103365,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -103383,12 +103383,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -103399,12 +103399,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -103417,12 +103417,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -103433,12 +103433,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -103451,12 +103451,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -103467,12 +103467,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -103485,12 +103485,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -103501,12 +103501,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -103519,12 +103519,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -103535,12 +103535,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -103553,12 +103553,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -103569,12 +103569,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -103587,12 +103587,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -103603,12 +103603,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -103621,12 +103621,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -103637,12 +103637,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -103655,12 +103655,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -103671,12 +103671,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -103689,12 +103689,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -103705,12 +103705,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -103723,12 +103723,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -103739,12 +103739,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -103757,12 +103757,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -103773,12 +103773,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -103791,12 +103791,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -103807,12 +103807,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -103825,12 +103825,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -103841,12 +103841,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -103859,12 +103859,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -103875,12 +103875,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -103893,12 +103893,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -103909,12 +103909,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -103927,12 +103927,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -103943,12 +103943,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -103961,12 +103961,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -103977,12 +103977,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -103995,12 +103995,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -104011,12 +104011,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -104029,12 +104029,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -104045,12 +104045,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -104063,12 +104063,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -104079,12 +104079,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -104097,12 +104097,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -104113,12 +104113,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -104131,12 +104131,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -104147,12 +104147,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -104165,12 +104165,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -104181,12 +104181,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -104199,12 +104199,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -104215,12 +104215,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -104233,12 +104233,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -104249,12 +104249,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -104267,12 +104267,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -104283,12 +104283,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -104301,12 +104301,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -104317,12 +104317,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -104335,12 +104335,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -104351,12 +104351,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -104369,12 +104369,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -104385,12 +104385,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -104403,12 +104403,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -104419,12 +104419,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -104437,12 +104437,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -104453,12 +104453,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -104471,12 +104471,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -104487,12 +104487,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -104505,12 +104505,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -104521,12 +104521,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -104539,12 +104539,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -104555,12 +104555,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -104573,12 +104573,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -104589,12 +104589,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -104607,12 +104607,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -104623,12 +104623,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -104641,12 +104641,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -104657,12 +104657,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -104675,12 +104675,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -104691,12 +104691,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -104709,12 +104709,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -104725,12 +104725,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -104743,12 +104743,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -104759,12 +104759,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -104777,12 +104777,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -104793,12 +104793,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 82, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -104811,12 +104811,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -104827,12 +104827,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 82, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -104845,12 +104845,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -104861,12 +104861,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 82, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -104879,12 +104879,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -104895,12 +104895,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 82, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -104913,12 +104913,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -104929,12 +104929,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 82, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -104947,12 +104947,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -104963,12 +104963,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 82, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -104981,12 +104981,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -104997,12 +104997,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -105015,12 +105015,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -105031,12 +105031,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -105049,12 +105049,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -105065,12 +105065,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -105083,12 +105083,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -105099,12 +105099,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -105117,12 +105117,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -105133,12 +105133,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -105151,12 +105151,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -105167,12 +105167,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -105185,12 +105185,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -105201,12 +105201,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -105219,12 +105219,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -105235,12 +105235,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -105253,12 +105253,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -105269,12 +105269,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -105287,12 +105287,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -105303,12 +105303,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -105321,12 +105321,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -105337,12 +105337,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -105355,12 +105355,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -105371,12 +105371,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -105389,12 +105389,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -105405,12 +105405,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -105423,12 +105423,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -105439,12 +105439,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -105457,12 +105457,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -105473,12 +105473,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -105491,12 +105491,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -105507,12 +105507,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -105525,12 +105525,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -105541,12 +105541,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -105559,12 +105559,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -105575,12 +105575,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -105593,12 +105593,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -105609,12 +105609,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -105627,12 +105627,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -105643,12 +105643,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -105661,12 +105661,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -105677,12 +105677,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -105695,12 +105695,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -105711,12 +105711,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -105729,12 +105729,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -105745,12 +105745,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -105763,12 +105763,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -105779,12 +105779,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -105797,12 +105797,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -105813,12 +105813,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -105831,12 +105831,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -105847,12 +105847,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -105865,12 +105865,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -105881,12 +105881,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -105899,12 +105899,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -105915,12 +105915,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -105933,12 +105933,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -105949,12 +105949,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -105967,12 +105967,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -105983,12 +105983,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -106001,12 +106001,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -106017,12 +106017,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -106035,12 +106035,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -106051,12 +106051,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -106069,12 +106069,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -106085,12 +106085,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -106103,12 +106103,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -106119,12 +106119,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -106137,12 +106137,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -106153,12 +106153,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -106171,12 +106171,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -106187,12 +106187,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -106205,12 +106205,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -106221,12 +106221,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -106239,12 +106239,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -106255,12 +106255,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -106273,12 +106273,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -106289,12 +106289,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -106307,12 +106307,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -106323,12 +106323,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -106341,12 +106341,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -106357,12 +106357,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -106375,12 +106375,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 42
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -106391,12 +106391,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 42, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -106409,12 +106409,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 42
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -106425,12 +106425,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 42, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -106443,12 +106443,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 42
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -106459,12 +106459,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 42, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -106477,12 +106477,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 42
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -106493,12 +106493,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 42, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -106511,12 +106511,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 42
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -106527,12 +106527,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 42, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -106545,12 +106545,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -106561,12 +106561,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -106579,12 +106579,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -106595,12 +106595,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -106613,12 +106613,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -106629,12 +106629,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -106647,12 +106647,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -106663,12 +106663,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -106681,12 +106681,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -106697,12 +106697,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -106715,12 +106715,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -106731,12 +106731,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -106749,12 +106749,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -106765,12 +106765,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -106783,12 +106783,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -106799,12 +106799,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -106817,12 +106817,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -106833,12 +106833,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -106851,12 +106851,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -106867,12 +106867,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -106885,12 +106885,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -106901,12 +106901,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -106919,12 +106919,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -106935,12 +106935,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -106953,12 +106953,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -106969,12 +106969,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -106987,12 +106987,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -107003,12 +107003,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -107021,12 +107021,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -107037,12 +107037,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -107055,12 +107055,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -107071,12 +107071,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -107089,12 +107089,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -107105,12 +107105,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -107123,12 +107123,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -107139,12 +107139,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -107157,12 +107157,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -107173,12 +107173,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -107191,12 +107191,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -107207,12 +107207,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -107225,12 +107225,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -107241,12 +107241,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -107259,12 +107259,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 42
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -107275,12 +107275,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -107293,12 +107293,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 42
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -107309,12 +107309,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -107327,12 +107327,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 42
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -107343,12 +107343,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -107361,12 +107361,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 42
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -107377,12 +107377,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -107395,12 +107395,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 42
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -107411,12 +107411,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -107429,12 +107429,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 42
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -107445,12 +107445,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -107463,12 +107463,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -107479,12 +107479,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -107497,12 +107497,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -107513,12 +107513,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -107531,12 +107531,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -107547,12 +107547,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -107565,12 +107565,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -107581,12 +107581,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -107599,12 +107599,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -107615,12 +107615,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -107633,12 +107633,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -107649,12 +107649,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -107667,12 +107667,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -107683,12 +107683,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -107701,12 +107701,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -107717,12 +107717,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -107735,12 +107735,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -107751,12 +107751,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -107769,12 +107769,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -107785,12 +107785,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -107803,12 +107803,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -107819,12 +107819,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -107837,12 +107837,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -107853,12 +107853,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -107871,12 +107871,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -107887,12 +107887,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -107905,12 +107905,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -107921,12 +107921,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -107939,12 +107939,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = c2
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -107955,12 +107955,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c2, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -107973,12 +107973,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = c2
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -107989,12 +107989,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c2, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -108007,12 +108007,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = c2
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -108023,12 +108023,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c2, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -108041,12 +108041,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = c2
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -108057,12 +108057,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c2, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -108075,12 +108075,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = c2
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -108091,12 +108091,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c2, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -108109,12 +108109,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -108125,12 +108125,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -108143,12 +108143,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -108159,12 +108159,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -108177,12 +108177,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -108193,12 +108193,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -108211,12 +108211,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -108227,12 +108227,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -108245,12 +108245,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -108261,12 +108261,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -108279,12 +108279,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -108295,12 +108295,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -108313,12 +108313,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -108329,12 +108329,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -108347,12 +108347,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -108363,12 +108363,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -108381,12 +108381,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -108397,12 +108397,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -108415,12 +108415,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -108431,12 +108431,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -108449,12 +108449,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -108465,12 +108465,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -108483,12 +108483,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -108499,12 +108499,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -108517,12 +108517,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -108533,12 +108533,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -108551,12 +108551,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -108567,12 +108567,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -108585,12 +108585,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -108601,12 +108601,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -108619,12 +108619,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -108635,12 +108635,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -108653,12 +108653,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -108669,12 +108669,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -108687,12 +108687,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -108703,12 +108703,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -108721,12 +108721,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -108737,12 +108737,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -108755,12 +108755,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -108771,12 +108771,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -108789,12 +108789,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -108805,12 +108805,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -108823,12 +108823,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 42
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -108839,12 +108839,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -108857,12 +108857,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -108873,12 +108873,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -108891,12 +108891,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -108907,12 +108907,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -108925,12 +108925,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -108941,12 +108941,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -108959,12 +108959,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -108975,12 +108975,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -108993,12 +108993,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -109009,12 +109009,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -109027,12 +109027,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -109043,12 +109043,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -109061,12 +109061,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -109077,12 +109077,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -109095,12 +109095,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -109111,12 +109111,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -109129,12 +109129,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -109145,12 +109145,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -109163,12 +109163,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -109179,12 +109179,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -109197,12 +109197,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -109213,12 +109213,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -109231,12 +109231,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -109247,12 +109247,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -109265,12 +109265,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -109281,12 +109281,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -109299,12 +109299,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -109315,12 +109315,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -109333,12 +109333,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -109349,12 +109349,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -109367,12 +109367,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -109383,12 +109383,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -109401,12 +109401,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -109417,12 +109417,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -109435,12 +109435,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -109451,12 +109451,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -109469,12 +109469,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -109485,12 +109485,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -109503,12 +109503,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -109519,12 +109519,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -109537,12 +109537,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 22
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -109553,12 +109553,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 22, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -109571,12 +109571,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 22
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -109587,12 +109587,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 22, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -109605,12 +109605,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 22
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -109621,12 +109621,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 22, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -109639,12 +109639,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 22
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -109655,12 +109655,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 22, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -109673,12 +109673,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -109689,12 +109689,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -109707,12 +109707,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -109723,12 +109723,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -109741,12 +109741,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -109757,12 +109757,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -109775,12 +109775,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -109791,12 +109791,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -109809,12 +109809,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -109825,12 +109825,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -109843,12 +109843,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -109859,12 +109859,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -109877,12 +109877,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -109893,12 +109893,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -109911,12 +109911,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -109927,12 +109927,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -109945,12 +109945,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -109961,12 +109961,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -109979,12 +109979,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -109995,12 +109995,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -110013,12 +110013,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -110029,12 +110029,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -110047,12 +110047,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -110063,12 +110063,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -110081,12 +110081,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -110097,12 +110097,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -110115,12 +110115,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -110131,12 +110131,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -110149,12 +110149,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -110165,12 +110165,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -110183,12 +110183,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -110199,12 +110199,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -110217,12 +110217,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -110233,12 +110233,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -110251,12 +110251,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -110267,12 +110267,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -110285,12 +110285,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -110301,12 +110301,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -110319,12 +110319,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -110335,12 +110335,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -110353,12 +110353,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -110369,12 +110369,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -110387,12 +110387,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -110403,12 +110403,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -110421,12 +110421,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -110437,12 +110437,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -110455,12 +110455,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -110471,12 +110471,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -110489,12 +110489,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -110505,12 +110505,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -110523,12 +110523,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -110539,12 +110539,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -110557,12 +110557,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -110573,12 +110573,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -110591,12 +110591,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -110607,12 +110607,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -110625,12 +110625,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -110641,12 +110641,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -110659,12 +110659,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -110675,12 +110675,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -110693,12 +110693,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -110709,12 +110709,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -110727,12 +110727,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -110743,12 +110743,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -110761,12 +110761,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -110777,12 +110777,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -110795,12 +110795,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -110811,12 +110811,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -110829,12 +110829,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -110845,12 +110845,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -110863,12 +110863,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -110879,12 +110879,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -110897,12 +110897,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -110913,12 +110913,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -110931,12 +110931,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -110947,12 +110947,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -110965,12 +110965,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -110981,12 +110981,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -110999,12 +110999,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -111015,12 +111015,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -111033,12 +111033,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -111049,12 +111049,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -111067,12 +111067,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -111083,12 +111083,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -111101,12 +111101,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = a2
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -111117,12 +111117,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a2, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -111135,12 +111135,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = a2
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -111151,12 +111151,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a2, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -111169,12 +111169,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = a2
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -111185,12 +111185,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a2, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -111203,12 +111203,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = a2
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -111219,12 +111219,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a2, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -111237,12 +111237,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -111253,12 +111253,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -111271,12 +111271,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -111287,12 +111287,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -111305,12 +111305,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -111321,12 +111321,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -111339,12 +111339,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -111355,12 +111355,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -111373,12 +111373,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -111389,12 +111389,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -111407,12 +111407,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -111423,12 +111423,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -111441,12 +111441,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -111457,12 +111457,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -111475,12 +111475,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -111491,12 +111491,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -111509,12 +111509,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -111525,12 +111525,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -111543,12 +111543,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -111559,12 +111559,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -111577,12 +111577,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -111593,12 +111593,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -111611,12 +111611,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -111627,12 +111627,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -111645,12 +111645,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -111661,12 +111661,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -111679,12 +111679,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -111695,12 +111695,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -111713,12 +111713,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -111729,12 +111729,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -111747,12 +111747,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -111763,12 +111763,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -111781,12 +111781,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -111797,12 +111797,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -111815,12 +111815,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -111831,12 +111831,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -111849,12 +111849,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -111865,12 +111865,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -111883,12 +111883,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -111899,12 +111899,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -111917,12 +111917,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -111933,12 +111933,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -111951,12 +111951,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -111967,12 +111967,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -111985,12 +111985,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -112001,12 +112001,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -112019,12 +112019,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -112035,12 +112035,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -112053,12 +112053,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -112069,12 +112069,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -112087,12 +112087,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -112103,12 +112103,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -112121,12 +112121,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -112137,12 +112137,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -112155,12 +112155,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -112171,12 +112171,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -112189,12 +112189,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -112205,12 +112205,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -112223,12 +112223,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -112239,12 +112239,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -112257,12 +112257,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -112273,12 +112273,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -112291,12 +112291,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -112307,12 +112307,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -112325,12 +112325,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -112341,12 +112341,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -112359,12 +112359,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -112375,12 +112375,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -112393,12 +112393,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -112409,12 +112409,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -112427,12 +112427,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -112443,12 +112443,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -112461,12 +112461,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -112477,12 +112477,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -112495,12 +112495,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -112511,12 +112511,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -112529,12 +112529,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -112545,12 +112545,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -112563,12 +112563,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -112579,12 +112579,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -112597,12 +112597,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -112613,12 +112613,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -112631,12 +112631,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -112647,12 +112647,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -112665,12 +112665,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 62
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -112681,12 +112681,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 62, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -112699,12 +112699,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 62
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -112715,12 +112715,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 62, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -112733,12 +112733,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 62
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -112749,12 +112749,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 62, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -112767,12 +112767,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 62
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -112783,12 +112783,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 62, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -112801,12 +112801,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -112817,12 +112817,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -112835,12 +112835,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -112851,12 +112851,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -112869,12 +112869,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -112885,12 +112885,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -112903,12 +112903,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -112919,12 +112919,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -112937,12 +112937,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -112953,12 +112953,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -112971,12 +112971,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -112987,12 +112987,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -113005,12 +113005,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -113021,12 +113021,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -113039,12 +113039,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -113055,12 +113055,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -113073,12 +113073,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -113089,12 +113089,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -113107,12 +113107,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -113123,12 +113123,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -113141,12 +113141,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -113157,12 +113157,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -113175,12 +113175,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -113191,12 +113191,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -113209,12 +113209,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -113225,12 +113225,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -113243,12 +113243,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -113259,12 +113259,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -113277,12 +113277,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -113293,12 +113293,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -113311,12 +113311,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -113327,12 +113327,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -113345,12 +113345,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -113361,12 +113361,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -113379,12 +113379,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -113395,12 +113395,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -113413,12 +113413,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -113429,12 +113429,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -113447,12 +113447,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -113463,12 +113463,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -113481,12 +113481,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -113497,12 +113497,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -113515,12 +113515,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 42
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -113531,12 +113531,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -113549,12 +113549,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -113565,12 +113565,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -113583,12 +113583,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -113599,12 +113599,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -113617,12 +113617,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -113633,12 +113633,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -113651,12 +113651,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -113667,12 +113667,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -113685,12 +113685,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -113701,12 +113701,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -113719,12 +113719,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -113735,12 +113735,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -113753,12 +113753,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -113769,12 +113769,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -113787,12 +113787,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -113803,12 +113803,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -113821,12 +113821,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -113837,12 +113837,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -113855,12 +113855,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -113871,12 +113871,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -113889,12 +113889,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -113905,12 +113905,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -113923,12 +113923,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -113939,12 +113939,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -113957,12 +113957,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -113973,12 +113973,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -113991,12 +113991,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -114007,12 +114007,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -114025,12 +114025,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -114041,12 +114041,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -114059,12 +114059,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -114075,12 +114075,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -114093,12 +114093,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -114109,12 +114109,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -114127,12 +114127,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -114143,12 +114143,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -114161,12 +114161,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -114177,12 +114177,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -114195,12 +114195,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -114211,12 +114211,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -114229,12 +114229,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = e2
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -114245,12 +114245,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e2, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -114263,12 +114263,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = e2
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -114279,12 +114279,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e2, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -114297,12 +114297,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = e2
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -114313,12 +114313,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e2, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -114331,12 +114331,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = e2
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -114347,12 +114347,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e2, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -114365,12 +114365,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -114381,12 +114381,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -114399,12 +114399,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -114415,12 +114415,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -114433,12 +114433,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -114449,12 +114449,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -114467,12 +114467,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -114483,12 +114483,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -114501,12 +114501,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -114517,12 +114517,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -114535,12 +114535,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -114551,12 +114551,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -114569,12 +114569,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -114585,12 +114585,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -114603,12 +114603,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -114619,12 +114619,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -114637,12 +114637,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -114653,12 +114653,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -114671,12 +114671,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -114687,12 +114687,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -114705,12 +114705,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -114721,12 +114721,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -114739,12 +114739,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -114755,12 +114755,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -114773,12 +114773,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -114789,12 +114789,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -114807,12 +114807,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -114823,12 +114823,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -114841,12 +114841,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -114857,12 +114857,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -114875,12 +114875,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -114891,12 +114891,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -114909,12 +114909,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -114925,12 +114925,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -114943,12 +114943,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -114959,12 +114959,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -114977,12 +114977,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -114993,12 +114993,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -115011,12 +115011,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -115027,12 +115027,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -115045,12 +115045,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -115061,12 +115061,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -115079,12 +115079,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -115095,12 +115095,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -115113,12 +115113,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -115129,12 +115129,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -115147,12 +115147,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -115163,12 +115163,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -115181,12 +115181,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -115197,12 +115197,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -115215,12 +115215,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -115231,12 +115231,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -115249,12 +115249,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -115265,12 +115265,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -115283,12 +115283,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -115299,12 +115299,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -115317,12 +115317,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -115333,12 +115333,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -115351,12 +115351,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -115367,12 +115367,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -115385,12 +115385,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -115401,12 +115401,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -115419,12 +115419,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -115435,12 +115435,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -115453,12 +115453,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -115469,12 +115469,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -115487,12 +115487,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -115503,12 +115503,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -115521,12 +115521,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -115537,12 +115537,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -115555,12 +115555,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -115571,12 +115571,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -115589,12 +115589,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -115605,12 +115605,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -115623,12 +115623,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -115639,12 +115639,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -115657,12 +115657,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -115673,12 +115673,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -115691,12 +115691,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -115707,12 +115707,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -115725,12 +115725,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -115741,12 +115741,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -115759,12 +115759,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -115775,12 +115775,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 12, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -115793,12 +115793,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -115809,12 +115809,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 12, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -115827,12 +115827,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -115843,12 +115843,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 12, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -115861,12 +115861,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -115877,12 +115877,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 12, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -115895,12 +115895,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -115911,12 +115911,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 12, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -115929,12 +115929,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -115945,12 +115945,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -115963,12 +115963,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -115979,12 +115979,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -115997,12 +115997,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -116013,12 +116013,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -116031,12 +116031,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -116047,12 +116047,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -116065,12 +116065,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -116081,12 +116081,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -116099,12 +116099,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -116115,12 +116115,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -116133,12 +116133,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -116149,12 +116149,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -116167,12 +116167,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -116183,12 +116183,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -116201,12 +116201,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -116217,12 +116217,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -116235,12 +116235,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -116251,12 +116251,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -116269,12 +116269,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -116285,12 +116285,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -116303,12 +116303,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -116319,12 +116319,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -116337,12 +116337,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -116353,12 +116353,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -116371,12 +116371,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -116387,12 +116387,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -116405,12 +116405,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -116421,12 +116421,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -116439,12 +116439,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -116455,12 +116455,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -116473,12 +116473,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -116489,12 +116489,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -116507,12 +116507,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -116523,12 +116523,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -116541,12 +116541,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -116557,12 +116557,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -116575,12 +116575,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -116591,12 +116591,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -116609,12 +116609,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -116625,12 +116625,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -116643,12 +116643,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -116659,12 +116659,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -116677,12 +116677,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -116693,12 +116693,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -116711,12 +116711,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -116727,12 +116727,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -116745,12 +116745,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -116761,12 +116761,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -116779,12 +116779,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -116795,12 +116795,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -116813,12 +116813,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -116829,12 +116829,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -116847,12 +116847,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -116863,12 +116863,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -116881,12 +116881,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -116897,12 +116897,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -116915,12 +116915,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -116931,12 +116931,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -116949,12 +116949,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -116965,12 +116965,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -116983,12 +116983,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -116999,12 +116999,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -117017,12 +117017,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -117033,12 +117033,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -117051,12 +117051,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -117067,12 +117067,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -117085,12 +117085,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -117101,12 +117101,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -117119,12 +117119,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -117135,12 +117135,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -117153,12 +117153,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -117169,12 +117169,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -117187,12 +117187,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -117203,12 +117203,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -117221,12 +117221,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -117237,12 +117237,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -117255,12 +117255,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -117271,12 +117271,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -117289,12 +117289,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -117305,12 +117305,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 82, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -117323,12 +117323,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -117339,12 +117339,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 82, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -117357,12 +117357,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -117373,12 +117373,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 82, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -117391,12 +117391,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 92
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -117407,12 +117407,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 92, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -117425,12 +117425,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 92
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -117441,12 +117441,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 92, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -117459,12 +117459,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 92
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -117475,12 +117475,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 92, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -117493,12 +117493,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -117509,12 +117509,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -117527,12 +117527,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -117543,12 +117543,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -117561,12 +117561,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -117577,12 +117577,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -117595,12 +117595,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -117611,12 +117611,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -117629,12 +117629,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -117645,12 +117645,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -117663,12 +117663,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -117679,12 +117679,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -117697,12 +117697,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -117713,12 +117713,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -117731,12 +117731,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -117747,12 +117747,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -117765,12 +117765,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -117781,12 +117781,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -117799,12 +117799,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -117815,12 +117815,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -117833,12 +117833,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -117849,12 +117849,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -117867,12 +117867,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -117883,12 +117883,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -117901,12 +117901,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -117917,12 +117917,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -117935,12 +117935,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -117951,12 +117951,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -117969,12 +117969,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -117985,12 +117985,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -118003,12 +118003,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -118019,12 +118019,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -118037,12 +118037,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -118053,12 +118053,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -118071,12 +118071,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -118087,12 +118087,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -118105,12 +118105,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -118121,12 +118121,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -118139,12 +118139,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -118155,12 +118155,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -118173,12 +118173,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -118189,12 +118189,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -118207,12 +118207,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -118223,12 +118223,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -118241,12 +118241,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -118257,12 +118257,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -118275,12 +118275,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -118291,12 +118291,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -118309,12 +118309,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -118325,12 +118325,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -118343,12 +118343,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -118359,12 +118359,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -118377,12 +118377,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -118393,12 +118393,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -118411,12 +118411,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -118427,12 +118427,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -118445,12 +118445,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -118461,12 +118461,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -118479,12 +118479,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -118495,12 +118495,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -118513,12 +118513,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -118529,12 +118529,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -118547,12 +118547,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -118563,12 +118563,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -118581,12 +118581,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -118597,12 +118597,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -118615,12 +118615,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -118631,12 +118631,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -118649,12 +118649,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -118665,12 +118665,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -118683,12 +118683,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -118699,12 +118699,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -118717,12 +118717,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -118733,12 +118733,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -118751,12 +118751,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -118767,12 +118767,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -118785,12 +118785,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -118801,12 +118801,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -118819,12 +118819,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -118835,12 +118835,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -118853,12 +118853,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -118869,12 +118869,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 50, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -118887,12 +118887,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -118903,12 +118903,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 50, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -118921,12 +118921,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -118937,12 +118937,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 50, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -118955,12 +118955,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 52
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -118971,12 +118971,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 52, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -118989,12 +118989,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 52
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -119005,12 +119005,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 52, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -119023,12 +119023,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 52
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -119039,12 +119039,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 52, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -119057,12 +119057,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -119073,12 +119073,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -119091,12 +119091,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -119107,12 +119107,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -119125,12 +119125,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -119141,12 +119141,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -119159,12 +119159,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -119175,12 +119175,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -119193,12 +119193,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -119209,12 +119209,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -119227,12 +119227,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -119243,12 +119243,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -119261,12 +119261,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -119277,12 +119277,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -119295,12 +119295,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -119311,12 +119311,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -119329,12 +119329,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -119345,12 +119345,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -119363,12 +119363,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -119379,12 +119379,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -119397,12 +119397,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -119413,12 +119413,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -119431,12 +119431,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -119447,12 +119447,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -119465,12 +119465,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -119481,12 +119481,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -119499,12 +119499,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -119515,12 +119515,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -119533,12 +119533,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -119549,12 +119549,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -119567,12 +119567,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -119583,12 +119583,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -119601,12 +119601,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -119617,12 +119617,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -119635,12 +119635,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -119651,12 +119651,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -119669,12 +119669,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -119685,12 +119685,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -119703,12 +119703,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -119719,12 +119719,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -119737,12 +119737,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 12
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -119753,12 +119753,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -119771,12 +119771,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 42
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -119787,12 +119787,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -119805,12 +119805,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 42
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -119821,12 +119821,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -119839,12 +119839,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 42
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -119855,12 +119855,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -119873,12 +119873,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 42
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -119889,12 +119889,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -119907,12 +119907,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 42
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -119923,12 +119923,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -119941,12 +119941,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 42
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -119957,12 +119957,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -119975,12 +119975,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -119991,12 +119991,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -120009,12 +120009,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -120025,12 +120025,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -120043,12 +120043,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -120059,12 +120059,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -120077,12 +120077,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -120093,12 +120093,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -120111,12 +120111,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -120127,12 +120127,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -120145,12 +120145,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -120161,12 +120161,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -120179,12 +120179,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -120195,12 +120195,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -120213,12 +120213,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -120229,12 +120229,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -120247,12 +120247,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -120263,12 +120263,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -120281,12 +120281,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -120297,12 +120297,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -120315,12 +120315,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -120331,12 +120331,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -120349,12 +120349,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -120365,12 +120365,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -120383,12 +120383,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -120399,12 +120399,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -120417,12 +120417,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -120433,12 +120433,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -120451,12 +120451,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -120467,12 +120467,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -120485,12 +120485,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -120501,12 +120501,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -120519,12 +120519,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = d2
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -120535,12 +120535,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d2, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -120553,12 +120553,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = d2
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -120569,12 +120569,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d2, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -120587,12 +120587,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = d2
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -120603,12 +120603,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d2, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -120621,12 +120621,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -120637,12 +120637,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -120655,12 +120655,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -120671,12 +120671,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -120689,12 +120689,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -120705,12 +120705,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -120723,12 +120723,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -120739,12 +120739,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -120757,12 +120757,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -120773,12 +120773,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -120791,12 +120791,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -120807,12 +120807,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -120825,12 +120825,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -120841,12 +120841,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -120859,12 +120859,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -120875,12 +120875,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -120893,12 +120893,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -120909,12 +120909,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -120927,12 +120927,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -120943,12 +120943,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -120961,12 +120961,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -120977,12 +120977,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -120995,12 +120995,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -121011,12 +121011,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -121029,12 +121029,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -121045,12 +121045,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -121063,12 +121063,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -121079,12 +121079,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -121097,12 +121097,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -121113,12 +121113,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -121131,12 +121131,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -121147,12 +121147,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -121165,12 +121165,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -121181,12 +121181,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -121199,12 +121199,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -121215,12 +121215,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -121233,12 +121233,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -121249,12 +121249,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -121267,12 +121267,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -121283,12 +121283,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -121301,12 +121301,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -121317,12 +121317,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -121335,12 +121335,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -121351,12 +121351,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -121369,12 +121369,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -121385,12 +121385,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -121403,12 +121403,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -121419,12 +121419,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -121437,12 +121437,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -121453,12 +121453,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -121471,12 +121471,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -121487,12 +121487,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -121505,12 +121505,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -121521,12 +121521,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -121539,12 +121539,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -121555,12 +121555,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -121573,12 +121573,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -121589,12 +121589,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -121607,12 +121607,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -121623,12 +121623,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -121641,12 +121641,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -121657,12 +121657,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -121675,12 +121675,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -121691,12 +121691,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -121709,12 +121709,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -121725,12 +121725,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -121743,12 +121743,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -121759,12 +121759,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -121777,12 +121777,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -121793,12 +121793,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -121811,12 +121811,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -121827,12 +121827,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -121845,12 +121845,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -121861,12 +121861,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -121879,12 +121879,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -121895,12 +121895,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -121913,12 +121913,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -121929,12 +121929,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -121947,12 +121947,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -121963,12 +121963,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -121981,12 +121981,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -121997,12 +121997,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -122015,12 +122015,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -122031,12 +122031,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -122049,12 +122049,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -122065,12 +122065,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 32, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -122083,12 +122083,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -122099,12 +122099,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 32, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -122117,12 +122117,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -122133,12 +122133,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 32, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -122151,12 +122151,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -122167,12 +122167,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 32, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -122185,12 +122185,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -122201,12 +122201,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -122219,12 +122219,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -122235,12 +122235,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -122253,12 +122253,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -122269,12 +122269,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -122287,12 +122287,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -122303,12 +122303,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -122321,12 +122321,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -122337,12 +122337,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -122355,12 +122355,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -122371,12 +122371,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -122389,12 +122389,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -122405,12 +122405,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -122423,12 +122423,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -122439,12 +122439,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -122457,12 +122457,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -122473,12 +122473,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -122491,12 +122491,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -122507,12 +122507,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -122525,12 +122525,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -122541,12 +122541,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -122559,12 +122559,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -122575,12 +122575,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -122593,12 +122593,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -122609,12 +122609,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -122627,12 +122627,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -122643,12 +122643,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -122661,12 +122661,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -122677,12 +122677,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -122695,12 +122695,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -122711,12 +122711,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -122729,12 +122729,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -122745,12 +122745,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -122763,12 +122763,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -122779,12 +122779,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -122797,12 +122797,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -122813,12 +122813,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -122831,12 +122831,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -122847,12 +122847,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -122865,12 +122865,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -122881,12 +122881,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -122899,12 +122899,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -122915,12 +122915,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -122933,12 +122933,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -122949,12 +122949,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -122967,12 +122967,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -122983,12 +122983,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -123001,12 +123001,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -123017,12 +123017,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -123035,12 +123035,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -123051,12 +123051,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -123069,12 +123069,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -123085,12 +123085,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -123103,12 +123103,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -123119,12 +123119,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -123137,12 +123137,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -123153,12 +123153,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -123171,12 +123171,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -123187,12 +123187,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -123205,12 +123205,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -123221,12 +123221,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -123239,12 +123239,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -123255,12 +123255,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -123273,12 +123273,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -123289,12 +123289,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -123307,12 +123307,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -123323,12 +123323,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -123341,12 +123341,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -123357,12 +123357,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -123375,12 +123375,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -123391,12 +123391,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -123409,12 +123409,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -123425,12 +123425,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -123443,12 +123443,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -123459,12 +123459,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -123477,12 +123477,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -123493,12 +123493,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -123511,12 +123511,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -123527,12 +123527,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -123545,12 +123545,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -123561,12 +123561,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -123579,12 +123579,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -123595,12 +123595,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = b0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -123613,12 +123613,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -123629,12 +123629,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = b0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -123647,12 +123647,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = b2
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -123663,12 +123663,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = b2, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -123681,12 +123681,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = b2
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -123697,12 +123697,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = b2, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -123715,12 +123715,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = b2
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -123731,12 +123731,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = b2, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -123749,12 +123749,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -123765,12 +123765,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -123783,12 +123783,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -123799,12 +123799,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -123817,12 +123817,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -123833,12 +123833,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -123851,12 +123851,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -123867,12 +123867,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -123885,12 +123885,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -123901,12 +123901,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -123919,12 +123919,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -123935,12 +123935,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -123953,12 +123953,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -123969,12 +123969,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -123987,12 +123987,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -124003,12 +124003,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -124021,12 +124021,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -124037,12 +124037,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -124055,12 +124055,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -124071,12 +124071,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -124089,12 +124089,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -124105,12 +124105,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -124123,12 +124123,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -124139,12 +124139,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -124157,12 +124157,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -124173,12 +124173,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -124191,12 +124191,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -124207,12 +124207,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -124225,12 +124225,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -124241,12 +124241,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -124259,12 +124259,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -124275,12 +124275,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -124293,12 +124293,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -124309,12 +124309,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -124327,12 +124327,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -124343,12 +124343,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -124361,12 +124361,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -124377,12 +124377,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -124395,12 +124395,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -124411,12 +124411,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -124429,12 +124429,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -124445,12 +124445,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -124463,12 +124463,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -124479,12 +124479,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -124497,12 +124497,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -124513,12 +124513,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -124531,12 +124531,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -124547,12 +124547,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -124565,12 +124565,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -124581,12 +124581,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -124599,12 +124599,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -124615,12 +124615,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -124633,12 +124633,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -124649,12 +124649,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -124667,12 +124667,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -124683,12 +124683,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -124701,12 +124701,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -124717,12 +124717,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -124735,12 +124735,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -124751,12 +124751,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -124769,12 +124769,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -124785,12 +124785,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -124803,12 +124803,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -124819,12 +124819,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -124837,12 +124837,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -124853,12 +124853,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -124871,12 +124871,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -124887,12 +124887,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -124905,12 +124905,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -124921,12 +124921,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -124939,12 +124939,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -124955,12 +124955,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -124973,12 +124973,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -124989,12 +124989,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -125007,12 +125007,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -125023,12 +125023,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -125041,12 +125041,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -125057,12 +125057,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -125075,12 +125075,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -125091,12 +125091,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -125109,12 +125109,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -125125,12 +125125,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 70, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -125143,12 +125143,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -125159,12 +125159,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 70, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -125177,12 +125177,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -125193,12 +125193,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 70, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -125211,12 +125211,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 72
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -125227,12 +125227,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 72, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -125245,12 +125245,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 72
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -125261,12 +125261,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 72, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -125279,12 +125279,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 72
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -125295,12 +125295,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 72, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -125313,12 +125313,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -125329,12 +125329,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -125347,12 +125347,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -125363,12 +125363,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -125381,12 +125381,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -125397,12 +125397,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -125415,12 +125415,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -125431,12 +125431,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -125449,12 +125449,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -125465,12 +125465,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -125483,12 +125483,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -125499,12 +125499,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -125517,12 +125517,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -125533,12 +125533,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -125551,12 +125551,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -125567,12 +125567,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -125585,12 +125585,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -125601,12 +125601,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -125619,12 +125619,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -125635,12 +125635,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -125653,12 +125653,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -125669,12 +125669,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -125687,12 +125687,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -125703,12 +125703,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -125721,12 +125721,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -125737,12 +125737,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -125755,12 +125755,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -125771,12 +125771,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -125789,12 +125789,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -125805,12 +125805,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -125823,12 +125823,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -125839,12 +125839,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -125857,12 +125857,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -125873,12 +125873,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -125891,12 +125891,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -125907,12 +125907,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -125925,12 +125925,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -125941,12 +125941,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -125959,12 +125959,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -125975,12 +125975,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -125993,12 +125993,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -126009,12 +126009,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -126027,12 +126027,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -126043,12 +126043,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -126061,12 +126061,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -126077,12 +126077,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -126095,12 +126095,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -126111,12 +126111,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -126129,12 +126129,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -126145,12 +126145,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -126163,12 +126163,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -126179,12 +126179,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -126197,12 +126197,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -126213,12 +126213,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -126231,12 +126231,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -126247,12 +126247,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -126265,12 +126265,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -126281,12 +126281,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -126299,12 +126299,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -126315,12 +126315,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -126333,12 +126333,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -126349,12 +126349,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -126367,12 +126367,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -126383,12 +126383,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -126401,12 +126401,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -126417,12 +126417,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -126435,12 +126435,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -126451,12 +126451,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -126469,12 +126469,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -126485,12 +126485,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -126503,12 +126503,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -126519,12 +126519,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -126537,12 +126537,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -126553,12 +126553,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -126571,12 +126571,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -126587,12 +126587,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -126605,12 +126605,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -126621,12 +126621,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -126639,12 +126639,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -126655,12 +126655,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -126673,12 +126673,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -126689,12 +126689,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 70, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -126707,12 +126707,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -126723,12 +126723,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -126741,12 +126741,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -126757,12 +126757,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -126775,12 +126775,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = f2
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -126791,12 +126791,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f2, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -126809,12 +126809,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = f2
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -126825,12 +126825,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f2, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -126843,12 +126843,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = f2
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -126859,12 +126859,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f2, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -126877,12 +126877,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -126893,12 +126893,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -126911,12 +126911,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -126927,12 +126927,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -126945,12 +126945,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -126961,12 +126961,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -126979,12 +126979,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -126995,12 +126995,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -127013,12 +127013,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -127029,12 +127029,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -127047,12 +127047,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -127063,12 +127063,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -127081,12 +127081,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -127097,12 +127097,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -127115,12 +127115,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -127131,12 +127131,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -127149,12 +127149,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -127165,12 +127165,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -127183,12 +127183,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -127199,12 +127199,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -127217,12 +127217,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -127233,12 +127233,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -127251,12 +127251,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -127267,12 +127267,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -127285,12 +127285,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -127301,12 +127301,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -127319,12 +127319,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -127335,12 +127335,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -127353,12 +127353,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -127369,12 +127369,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -127387,12 +127387,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -127403,12 +127403,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -127421,12 +127421,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -127437,12 +127437,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -127455,12 +127455,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -127471,12 +127471,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -127489,12 +127489,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -127505,12 +127505,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -127523,12 +127523,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -127539,12 +127539,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -127557,12 +127557,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -127573,12 +127573,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -127591,12 +127591,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -127607,12 +127607,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -127625,12 +127625,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -127641,12 +127641,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -127659,12 +127659,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -127675,12 +127675,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -127693,12 +127693,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -127709,12 +127709,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -127727,12 +127727,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -127743,12 +127743,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -127761,12 +127761,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -127777,12 +127777,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -127795,12 +127795,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -127811,12 +127811,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -127829,12 +127829,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -127845,12 +127845,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -127863,12 +127863,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -127879,12 +127879,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -127897,12 +127897,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -127913,12 +127913,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -127931,12 +127931,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -127947,12 +127947,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -127965,12 +127965,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -127981,12 +127981,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -127999,12 +127999,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -128015,12 +128015,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -128033,12 +128033,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -128049,12 +128049,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -128067,12 +128067,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -128083,12 +128083,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -128101,12 +128101,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -128117,12 +128117,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -128135,12 +128135,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -128151,12 +128151,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -128169,12 +128169,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -128185,12 +128185,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -128203,12 +128203,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -128219,12 +128219,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -128237,12 +128237,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -128253,12 +128253,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -128271,12 +128271,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -128287,12 +128287,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -128305,12 +128305,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -128321,12 +128321,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -128339,12 +128339,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -128355,12 +128355,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -128373,12 +128373,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -128389,12 +128389,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -128407,12 +128407,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -128423,12 +128423,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -128441,12 +128441,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -128457,12 +128457,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -128475,12 +128475,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -128491,12 +128491,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -128509,12 +128509,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -128525,12 +128525,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -128543,12 +128543,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -128559,12 +128559,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -128577,12 +128577,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -128593,12 +128593,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -128611,12 +128611,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -128627,12 +128627,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -128645,12 +128645,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -128661,12 +128661,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -128679,12 +128679,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -128695,12 +128695,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -128713,12 +128713,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -128729,12 +128729,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -128747,12 +128747,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -128763,12 +128763,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -128781,12 +128781,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -128797,12 +128797,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -128815,12 +128815,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -128831,12 +128831,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -128849,12 +128849,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -128865,12 +128865,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -128883,12 +128883,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -128899,12 +128899,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -128917,12 +128917,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -128933,12 +128933,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -128951,12 +128951,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -128967,12 +128967,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -128985,12 +128985,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -129001,12 +129001,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -129019,12 +129019,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -129035,12 +129035,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -129053,12 +129053,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -129069,12 +129069,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -129087,12 +129087,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -129103,12 +129103,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -129121,12 +129121,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -129137,12 +129137,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -129155,12 +129155,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -129171,12 +129171,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -129189,12 +129189,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -129205,12 +129205,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -129223,12 +129223,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -129239,12 +129239,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -129257,12 +129257,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -129273,12 +129273,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -129291,12 +129291,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -129307,12 +129307,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -129325,12 +129325,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -129341,12 +129341,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -129359,12 +129359,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -129375,12 +129375,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -129393,12 +129393,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -129409,12 +129409,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -129427,12 +129427,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -129443,12 +129443,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -129461,12 +129461,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -129477,12 +129477,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -129495,12 +129495,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -129511,12 +129511,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -129529,12 +129529,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -129545,12 +129545,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -129563,12 +129563,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -129579,12 +129579,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -129597,12 +129597,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -129613,12 +129613,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -129631,12 +129631,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -129647,12 +129647,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -129665,12 +129665,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -129681,12 +129681,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -129699,12 +129699,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -129715,12 +129715,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -129733,12 +129733,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -129749,12 +129749,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -129767,12 +129767,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -129783,12 +129783,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -129801,12 +129801,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -129817,12 +129817,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -129835,12 +129835,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -129851,12 +129851,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -129869,12 +129869,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 8a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -129885,12 +129885,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 8a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -129903,12 +129903,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 8a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -129919,12 +129919,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 8a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -129937,12 +129937,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 8a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -129953,12 +129953,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 8a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -129971,12 +129971,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 8a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -129987,12 +129987,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 8a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -130005,12 +130005,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -130021,12 +130021,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -130039,12 +130039,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -130055,12 +130055,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -130073,12 +130073,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -130089,12 +130089,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -130107,12 +130107,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -130123,12 +130123,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -130141,12 +130141,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -130157,12 +130157,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -130175,12 +130175,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -130191,12 +130191,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -130209,12 +130209,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -130225,12 +130225,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -130243,12 +130243,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -130259,12 +130259,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -130277,12 +130277,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -130293,12 +130293,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -130311,12 +130311,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -130327,12 +130327,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -130345,12 +130345,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -130361,12 +130361,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -130379,12 +130379,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -130395,12 +130395,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -130413,12 +130413,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -130429,12 +130429,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -130447,12 +130447,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -130463,12 +130463,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -130481,12 +130481,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -130497,12 +130497,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -130515,12 +130515,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -130531,12 +130531,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -130549,12 +130549,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -130565,12 +130565,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -130583,12 +130583,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -130599,12 +130599,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -130617,12 +130617,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -130633,12 +130633,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -130651,12 +130651,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -130667,12 +130667,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -130685,12 +130685,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -130701,12 +130701,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -130719,12 +130719,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -130735,12 +130735,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -130753,12 +130753,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -130769,12 +130769,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -130787,12 +130787,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -130803,12 +130803,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -130821,12 +130821,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -130837,12 +130837,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -130855,12 +130855,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -130871,12 +130871,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -130889,12 +130889,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -130905,12 +130905,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -130923,12 +130923,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -130939,12 +130939,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -130957,12 +130957,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -130973,12 +130973,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -130991,12 +130991,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -131007,12 +131007,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -131025,12 +131025,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -131041,12 +131041,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -131059,12 +131059,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -131075,12 +131075,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -131093,12 +131093,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -131109,12 +131109,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -131127,12 +131127,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -131143,12 +131143,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -131161,12 +131161,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -131177,12 +131177,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -131195,12 +131195,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -131211,12 +131211,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -131229,12 +131229,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -131245,12 +131245,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -131263,12 +131263,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -131279,12 +131279,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -131297,12 +131297,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -131313,12 +131313,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -131331,12 +131331,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -131347,12 +131347,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -131365,12 +131365,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -131381,12 +131381,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -131399,12 +131399,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -131415,12 +131415,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -131433,12 +131433,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -131449,12 +131449,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -131467,12 +131467,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 4a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -131483,12 +131483,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 4a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -131501,12 +131501,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 4a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -131517,12 +131517,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 4a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -131535,12 +131535,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 4a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -131551,12 +131551,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 4a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -131569,12 +131569,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -131585,12 +131585,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -131603,12 +131603,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -131619,12 +131619,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -131637,12 +131637,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -131653,12 +131653,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -131671,12 +131671,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -131687,12 +131687,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -131705,12 +131705,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -131721,12 +131721,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -131739,12 +131739,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -131755,12 +131755,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -131773,12 +131773,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -131789,12 +131789,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -131807,12 +131807,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -131823,12 +131823,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -131841,12 +131841,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -131857,12 +131857,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -131875,12 +131875,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -131891,12 +131891,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -131909,12 +131909,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -131925,12 +131925,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -131943,12 +131943,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -131959,12 +131959,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -131977,12 +131977,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -131993,12 +131993,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -132011,12 +132011,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -132027,12 +132027,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -132045,12 +132045,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -132061,12 +132061,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -132079,12 +132079,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -132095,12 +132095,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -132113,12 +132113,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -132129,12 +132129,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -132147,12 +132147,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -132163,12 +132163,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -132181,12 +132181,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -132197,12 +132197,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -132215,12 +132215,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -132231,12 +132231,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -132249,12 +132249,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -132265,12 +132265,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -132283,12 +132283,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 42
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -132299,12 +132299,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -132317,12 +132317,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 42
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -132333,12 +132333,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -132351,12 +132351,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 42
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -132367,12 +132367,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -132385,12 +132385,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 42
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -132401,12 +132401,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -132419,12 +132419,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 42
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -132435,12 +132435,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -132453,12 +132453,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 42
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -132469,12 +132469,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -132487,12 +132487,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -132503,12 +132503,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -132521,12 +132521,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -132537,12 +132537,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -132555,12 +132555,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -132571,12 +132571,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -132589,12 +132589,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -132605,12 +132605,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -132623,12 +132623,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -132639,12 +132639,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -132657,12 +132657,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -132673,12 +132673,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -132691,12 +132691,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -132707,12 +132707,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -132725,12 +132725,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -132741,12 +132741,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -132759,12 +132759,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -132775,12 +132775,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -132793,12 +132793,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -132809,12 +132809,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -132827,12 +132827,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -132843,12 +132843,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -132861,12 +132861,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -132877,12 +132877,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -132895,12 +132895,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -132911,12 +132911,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -132929,12 +132929,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -132945,12 +132945,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -132963,12 +132963,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = c2
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -132979,12 +132979,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c2, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -132997,12 +132997,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = c2
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -133013,12 +133013,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c2, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -133031,12 +133031,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = ca
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -133047,12 +133047,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = ca, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -133065,12 +133065,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = ca
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -133081,12 +133081,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = ca, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -133099,12 +133099,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = ca
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -133115,12 +133115,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = ca, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -133133,12 +133133,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -133149,12 +133149,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -133167,12 +133167,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -133183,12 +133183,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -133201,12 +133201,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -133217,12 +133217,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -133235,12 +133235,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -133251,12 +133251,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -133269,12 +133269,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -133285,12 +133285,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -133303,12 +133303,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -133319,12 +133319,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -133337,12 +133337,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -133353,12 +133353,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -133371,12 +133371,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -133387,12 +133387,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -133405,12 +133405,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -133421,12 +133421,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -133439,12 +133439,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -133455,12 +133455,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -133473,12 +133473,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -133489,12 +133489,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -133507,12 +133507,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -133523,12 +133523,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -133541,12 +133541,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -133557,12 +133557,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -133575,12 +133575,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -133591,12 +133591,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -133609,12 +133609,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -133625,12 +133625,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -133643,12 +133643,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -133659,12 +133659,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -133677,12 +133677,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -133693,12 +133693,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -133711,12 +133711,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -133727,12 +133727,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -133745,12 +133745,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -133761,12 +133761,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -133779,12 +133779,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -133795,12 +133795,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -133813,12 +133813,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -133829,12 +133829,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -133847,12 +133847,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -133863,12 +133863,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -133881,12 +133881,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -133897,12 +133897,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -133915,12 +133915,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -133931,12 +133931,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -133949,12 +133949,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -133965,12 +133965,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -133983,12 +133983,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -133999,12 +133999,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -134017,12 +134017,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -134033,12 +134033,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -134051,12 +134051,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -134067,12 +134067,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -134085,12 +134085,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -134101,12 +134101,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -134119,12 +134119,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -134135,12 +134135,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -134153,12 +134153,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -134169,12 +134169,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -134187,12 +134187,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -134203,12 +134203,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -134221,12 +134221,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -134237,12 +134237,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -134255,12 +134255,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -134271,12 +134271,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -134289,12 +134289,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -134305,12 +134305,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -134323,12 +134323,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -134339,12 +134339,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -134357,12 +134357,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -134373,12 +134373,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -134391,12 +134391,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -134407,12 +134407,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -134425,12 +134425,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -134441,12 +134441,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -134459,12 +134459,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -134475,12 +134475,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -134493,12 +134493,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -134509,12 +134509,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -134527,12 +134527,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -134543,12 +134543,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -134561,12 +134561,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 2a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -134577,12 +134577,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 2a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -134595,12 +134595,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 2a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -134611,12 +134611,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 2a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -134629,12 +134629,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 2a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -134645,12 +134645,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 2a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -134663,12 +134663,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 2a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -134679,12 +134679,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 2a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -134697,12 +134697,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -134713,12 +134713,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -134731,12 +134731,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -134747,12 +134747,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -134765,12 +134765,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -134781,12 +134781,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -134799,12 +134799,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -134815,12 +134815,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -134833,12 +134833,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -134849,12 +134849,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -134867,12 +134867,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -134883,12 +134883,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -134901,12 +134901,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -134917,12 +134917,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -134935,12 +134935,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -134951,12 +134951,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -134969,12 +134969,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -134985,12 +134985,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -135003,12 +135003,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -135019,12 +135019,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -135037,12 +135037,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -135053,12 +135053,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -135071,12 +135071,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -135087,12 +135087,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -135105,12 +135105,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -135121,12 +135121,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -135139,12 +135139,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -135155,12 +135155,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -135173,12 +135173,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -135189,12 +135189,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -135207,12 +135207,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -135223,12 +135223,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -135241,12 +135241,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -135257,12 +135257,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -135275,12 +135275,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -135291,12 +135291,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -135309,12 +135309,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -135325,12 +135325,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -135343,12 +135343,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -135359,12 +135359,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -135377,12 +135377,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -135393,12 +135393,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -135411,12 +135411,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -135427,12 +135427,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -135445,12 +135445,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -135461,12 +135461,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -135479,12 +135479,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -135495,12 +135495,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -135513,12 +135513,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -135529,12 +135529,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -135547,12 +135547,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -135563,12 +135563,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -135581,12 +135581,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -135597,12 +135597,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -135615,12 +135615,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -135631,12 +135631,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -135649,12 +135649,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -135665,12 +135665,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -135683,12 +135683,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -135699,12 +135699,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -135717,12 +135717,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -135733,12 +135733,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -135751,12 +135751,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -135767,12 +135767,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -135785,12 +135785,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -135801,12 +135801,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -135819,12 +135819,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -135835,12 +135835,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -135853,12 +135853,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -135869,12 +135869,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -135887,12 +135887,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -135903,12 +135903,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -135921,12 +135921,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -135937,12 +135937,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -135955,12 +135955,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -135971,12 +135971,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -135989,12 +135989,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -136005,12 +136005,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -136023,12 +136023,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -136039,12 +136039,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -136057,12 +136057,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -136073,12 +136073,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -136091,12 +136091,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -136107,12 +136107,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -136125,12 +136125,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 2a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -136141,12 +136141,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 2a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -136159,12 +136159,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 2a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -136175,12 +136175,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 2a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -136193,12 +136193,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = aa
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -136209,12 +136209,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = aa, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -136227,12 +136227,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = aa
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -136243,12 +136243,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = aa, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -136261,12 +136261,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -136277,12 +136277,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -136295,12 +136295,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -136311,12 +136311,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -136329,12 +136329,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -136345,12 +136345,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -136363,12 +136363,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -136379,12 +136379,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -136397,12 +136397,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -136413,12 +136413,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -136431,12 +136431,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -136447,12 +136447,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -136465,12 +136465,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -136481,12 +136481,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -136499,12 +136499,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -136515,12 +136515,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -136533,12 +136533,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -136549,12 +136549,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -136567,12 +136567,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -136583,12 +136583,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -136601,12 +136601,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 82
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -136617,12 +136617,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -136635,12 +136635,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -136651,12 +136651,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -136669,12 +136669,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -136685,12 +136685,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -136703,12 +136703,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -136719,12 +136719,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -136737,12 +136737,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -136753,12 +136753,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -136771,12 +136771,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -136787,12 +136787,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -136805,12 +136805,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -136821,12 +136821,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -136839,12 +136839,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -136855,12 +136855,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -136873,12 +136873,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -136889,12 +136889,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -136907,12 +136907,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -136923,12 +136923,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -136941,12 +136941,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -136957,12 +136957,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -136975,12 +136975,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -136991,12 +136991,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -137009,12 +137009,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -137025,12 +137025,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -137043,12 +137043,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -137059,12 +137059,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -137077,12 +137077,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -137093,12 +137093,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -137111,12 +137111,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -137127,12 +137127,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -137145,12 +137145,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -137161,12 +137161,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -137179,12 +137179,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -137195,12 +137195,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -137213,12 +137213,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -137229,12 +137229,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -137247,12 +137247,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -137263,12 +137263,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -137281,12 +137281,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -137297,12 +137297,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -137315,12 +137315,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -137331,12 +137331,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -137349,12 +137349,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -137365,12 +137365,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -137383,12 +137383,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -137399,12 +137399,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -137417,12 +137417,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -137433,12 +137433,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -137451,12 +137451,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -137467,12 +137467,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -137485,12 +137485,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -137501,12 +137501,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -137519,12 +137519,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -137535,12 +137535,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -137553,12 +137553,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -137569,12 +137569,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -137587,12 +137587,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -137603,12 +137603,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -137621,12 +137621,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -137637,12 +137637,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -137655,12 +137655,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -137671,12 +137671,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 68, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -137689,12 +137689,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -137705,12 +137705,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 68, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -137723,12 +137723,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 6a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -137739,12 +137739,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 6a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -137757,12 +137757,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 6a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -137773,12 +137773,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 6a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -137791,12 +137791,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 6a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -137807,12 +137807,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 6a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -137825,12 +137825,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -137841,12 +137841,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -137859,12 +137859,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -137875,12 +137875,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -137893,12 +137893,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -137909,12 +137909,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -137927,12 +137927,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -137943,12 +137943,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -137961,12 +137961,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -137977,12 +137977,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -137995,12 +137995,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -138011,12 +138011,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -138029,12 +138029,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -138045,12 +138045,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -138063,12 +138063,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -138079,12 +138079,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -138097,12 +138097,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -138113,12 +138113,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -138131,12 +138131,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -138147,12 +138147,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -138165,12 +138165,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -138181,12 +138181,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -138199,12 +138199,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -138215,12 +138215,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -138233,12 +138233,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -138249,12 +138249,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -138267,12 +138267,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -138283,12 +138283,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -138301,12 +138301,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -138317,12 +138317,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -138335,12 +138335,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -138351,12 +138351,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -138369,12 +138369,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -138385,12 +138385,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -138403,12 +138403,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -138419,12 +138419,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -138437,12 +138437,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -138453,12 +138453,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -138471,12 +138471,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -138487,12 +138487,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -138505,12 +138505,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -138521,12 +138521,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -138539,12 +138539,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -138555,12 +138555,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -138573,12 +138573,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -138589,12 +138589,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -138607,12 +138607,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -138623,12 +138623,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -138641,12 +138641,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -138657,12 +138657,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -138675,12 +138675,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -138691,12 +138691,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -138709,12 +138709,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -138725,12 +138725,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -138743,12 +138743,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -138759,12 +138759,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -138777,12 +138777,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -138793,12 +138793,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -138811,12 +138811,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -138827,12 +138827,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -138845,12 +138845,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -138861,12 +138861,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -138879,12 +138879,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -138895,12 +138895,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -138913,12 +138913,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -138929,12 +138929,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -138947,12 +138947,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -138963,12 +138963,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -138981,12 +138981,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -138997,12 +138997,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -139015,12 +139015,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -139031,12 +139031,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -139049,12 +139049,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -139065,12 +139065,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -139083,12 +139083,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -139099,12 +139099,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -139117,12 +139117,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -139133,12 +139133,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -139151,12 +139151,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -139167,12 +139167,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -139185,12 +139185,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -139201,12 +139201,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -139219,12 +139219,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -139235,12 +139235,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -139253,12 +139253,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -139269,12 +139269,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e8, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -139287,12 +139287,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -139303,12 +139303,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e8, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -139321,12 +139321,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = ea
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -139337,12 +139337,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = ea, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -139355,12 +139355,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = ea
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -139371,12 +139371,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = ea, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -139389,12 +139389,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -139405,12 +139405,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -139423,12 +139423,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -139439,12 +139439,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -139457,12 +139457,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -139473,12 +139473,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -139491,12 +139491,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -139507,12 +139507,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -139525,12 +139525,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -139541,12 +139541,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -139559,12 +139559,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -139575,12 +139575,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -139593,12 +139593,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -139609,12 +139609,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -139627,12 +139627,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -139643,12 +139643,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -139661,12 +139661,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -139677,12 +139677,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -139695,12 +139695,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -139711,12 +139711,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -139729,12 +139729,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -139745,12 +139745,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -139763,12 +139763,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -139779,12 +139779,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -139797,12 +139797,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -139813,12 +139813,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -139831,12 +139831,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -139847,12 +139847,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -139865,12 +139865,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -139881,12 +139881,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -139899,12 +139899,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -139915,12 +139915,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -139933,12 +139933,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -139949,12 +139949,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -139967,12 +139967,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -139983,12 +139983,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -140001,12 +140001,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -140017,12 +140017,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -140035,12 +140035,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -140051,12 +140051,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -140069,12 +140069,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -140085,12 +140085,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -140103,12 +140103,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -140119,12 +140119,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -140137,12 +140137,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -140153,12 +140153,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -140171,12 +140171,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -140187,12 +140187,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -140205,12 +140205,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -140221,12 +140221,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -140239,12 +140239,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -140255,12 +140255,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -140273,12 +140273,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -140289,12 +140289,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -140307,12 +140307,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -140323,12 +140323,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -140341,12 +140341,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -140357,12 +140357,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -140375,12 +140375,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -140391,12 +140391,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -140409,12 +140409,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -140425,12 +140425,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -140443,12 +140443,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -140459,12 +140459,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -140477,12 +140477,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -140493,12 +140493,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -140511,12 +140511,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -140527,12 +140527,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -140545,12 +140545,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -140561,12 +140561,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -140579,12 +140579,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -140595,12 +140595,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -140613,12 +140613,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -140629,12 +140629,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -140647,12 +140647,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -140663,12 +140663,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -140681,12 +140681,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -140697,12 +140697,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -140715,12 +140715,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -140731,12 +140731,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -140749,12 +140749,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -140765,12 +140765,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -140783,12 +140783,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -140799,12 +140799,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -140817,12 +140817,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -140833,12 +140833,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -140851,12 +140851,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -140867,12 +140867,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -140885,12 +140885,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -140901,12 +140901,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -140919,12 +140919,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -140935,12 +140935,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -140953,12 +140953,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -140969,12 +140969,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -140987,12 +140987,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -141003,12 +141003,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -141021,12 +141021,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -141037,12 +141037,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -141055,12 +141055,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -141071,12 +141071,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -141089,12 +141089,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -141105,12 +141105,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -141123,12 +141123,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -141139,12 +141139,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -141157,12 +141157,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -141173,12 +141173,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -141191,12 +141191,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -141207,12 +141207,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -141225,12 +141225,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -141241,12 +141241,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -141259,12 +141259,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -141275,12 +141275,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -141293,12 +141293,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -141309,12 +141309,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -141327,12 +141327,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -141343,12 +141343,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -141361,12 +141361,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -141377,12 +141377,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -141395,12 +141395,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -141411,12 +141411,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -141429,12 +141429,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -141445,12 +141445,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -141463,12 +141463,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -141479,12 +141479,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -141497,12 +141497,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -141513,12 +141513,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -141531,12 +141531,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -141547,12 +141547,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -141565,12 +141565,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -141581,12 +141581,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -141599,12 +141599,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -141615,12 +141615,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -141633,12 +141633,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -141649,12 +141649,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -141667,12 +141667,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -141683,12 +141683,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -141701,12 +141701,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -141717,12 +141717,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -141735,12 +141735,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -141751,12 +141751,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -141769,12 +141769,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -141785,12 +141785,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -141803,12 +141803,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -141819,12 +141819,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -141837,12 +141837,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -141853,12 +141853,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -141871,12 +141871,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -141887,12 +141887,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -141905,12 +141905,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -141921,12 +141921,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -141939,12 +141939,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -141955,12 +141955,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -141973,12 +141973,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -141989,12 +141989,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -142007,12 +142007,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -142023,12 +142023,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -142041,12 +142041,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -142057,12 +142057,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -142075,12 +142075,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -142091,12 +142091,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -142109,12 +142109,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -142125,12 +142125,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -142143,12 +142143,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -142159,12 +142159,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -142177,12 +142177,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -142193,12 +142193,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -142211,12 +142211,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -142227,12 +142227,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -142245,12 +142245,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -142261,12 +142261,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -142279,12 +142279,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -142295,12 +142295,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -142313,12 +142313,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -142329,12 +142329,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -142347,12 +142347,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -142363,12 +142363,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -142381,12 +142381,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -142397,12 +142397,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -142415,12 +142415,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 9a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -142431,12 +142431,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 9a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -142449,12 +142449,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 9a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -142465,12 +142465,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 9a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -142483,12 +142483,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 9a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -142499,12 +142499,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 9a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -142517,12 +142517,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -142533,12 +142533,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -142551,12 +142551,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -142567,12 +142567,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -142585,12 +142585,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -142601,12 +142601,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -142619,12 +142619,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -142635,12 +142635,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -142653,12 +142653,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -142669,12 +142669,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -142687,12 +142687,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -142703,12 +142703,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -142721,12 +142721,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -142737,12 +142737,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -142755,12 +142755,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -142771,12 +142771,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -142789,12 +142789,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -142805,12 +142805,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -142823,12 +142823,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -142839,12 +142839,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -142857,12 +142857,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -142873,12 +142873,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -142891,12 +142891,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -142907,12 +142907,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -142925,12 +142925,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -142941,12 +142941,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -142959,12 +142959,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -142975,12 +142975,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -142993,12 +142993,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -143009,12 +143009,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -143027,12 +143027,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -143043,12 +143043,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -143061,12 +143061,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -143077,12 +143077,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -143095,12 +143095,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -143111,12 +143111,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -143129,12 +143129,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -143145,12 +143145,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -143163,12 +143163,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -143179,12 +143179,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -143197,12 +143197,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -143213,12 +143213,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -143231,12 +143231,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -143247,12 +143247,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -143265,12 +143265,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -143281,12 +143281,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -143299,12 +143299,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -143315,12 +143315,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -143333,12 +143333,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -143349,12 +143349,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -143367,12 +143367,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -143383,12 +143383,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -143401,12 +143401,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -143417,12 +143417,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -143435,12 +143435,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -143451,12 +143451,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -143469,12 +143469,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -143485,12 +143485,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -143503,12 +143503,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -143519,12 +143519,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -143537,12 +143537,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -143553,12 +143553,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -143571,12 +143571,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -143587,12 +143587,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -143605,12 +143605,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -143621,12 +143621,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -143639,12 +143639,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -143655,12 +143655,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -143673,12 +143673,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -143689,12 +143689,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -143707,12 +143707,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -143723,12 +143723,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -143741,12 +143741,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -143757,12 +143757,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -143775,12 +143775,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -143791,12 +143791,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -143809,12 +143809,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -143825,12 +143825,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -143843,12 +143843,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -143859,12 +143859,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -143877,12 +143877,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -143893,12 +143893,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -143911,12 +143911,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -143927,12 +143927,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -143945,12 +143945,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -143961,12 +143961,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -143979,12 +143979,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 5a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -143995,12 +143995,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 5a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -144013,12 +144013,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 5a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -144029,12 +144029,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 5a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -144047,12 +144047,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 5a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -144063,12 +144063,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 5a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -144081,12 +144081,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -144097,12 +144097,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -144115,12 +144115,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -144131,12 +144131,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -144149,12 +144149,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -144165,12 +144165,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -144183,12 +144183,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -144199,12 +144199,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -144217,12 +144217,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -144233,12 +144233,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -144251,12 +144251,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -144267,12 +144267,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -144285,12 +144285,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -144301,12 +144301,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -144319,12 +144319,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -144335,12 +144335,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -144353,12 +144353,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -144369,12 +144369,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -144387,12 +144387,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -144403,12 +144403,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -144421,12 +144421,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -144437,12 +144437,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -144455,12 +144455,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -144471,12 +144471,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -144489,12 +144489,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -144505,12 +144505,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -144523,12 +144523,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -144539,12 +144539,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -144557,12 +144557,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -144573,12 +144573,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -144591,12 +144591,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -144607,12 +144607,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -144625,12 +144625,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -144641,12 +144641,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -144659,12 +144659,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -144675,12 +144675,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -144693,12 +144693,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -144709,12 +144709,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -144727,12 +144727,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -144743,12 +144743,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -144761,12 +144761,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -144777,12 +144777,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -144795,12 +144795,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -144811,12 +144811,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -144829,12 +144829,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -144845,12 +144845,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -144863,12 +144863,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -144879,12 +144879,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -144897,12 +144897,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -144913,12 +144913,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -144931,12 +144931,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -144947,12 +144947,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -144965,12 +144965,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -144981,12 +144981,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -144999,12 +144999,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -145015,12 +145015,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -145033,12 +145033,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -145049,12 +145049,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -145067,12 +145067,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -145083,12 +145083,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -145101,12 +145101,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -145117,12 +145117,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -145135,12 +145135,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -145151,12 +145151,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -145169,12 +145169,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -145185,12 +145185,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -145203,12 +145203,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -145219,12 +145219,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -145237,12 +145237,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -145253,12 +145253,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -145271,12 +145271,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -145287,12 +145287,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -145305,12 +145305,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -145321,12 +145321,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -145339,12 +145339,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -145355,12 +145355,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -145373,12 +145373,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -145389,12 +145389,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -145407,12 +145407,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -145423,12 +145423,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -145441,12 +145441,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -145457,12 +145457,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -145475,12 +145475,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -145491,12 +145491,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -145509,12 +145509,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -145525,12 +145525,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d8, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -145543,12 +145543,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -145559,12 +145559,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d8, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -145577,12 +145577,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = da
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -145593,12 +145593,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = da, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -145611,12 +145611,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = da
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -145627,12 +145627,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = da, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -145645,12 +145645,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -145661,12 +145661,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -145679,12 +145679,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -145695,12 +145695,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -145713,12 +145713,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -145729,12 +145729,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -145747,12 +145747,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -145763,12 +145763,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -145781,12 +145781,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -145797,12 +145797,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -145815,12 +145815,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -145831,12 +145831,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -145849,12 +145849,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -145865,12 +145865,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -145883,12 +145883,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -145899,12 +145899,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -145917,12 +145917,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -145933,12 +145933,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -145951,12 +145951,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -145967,12 +145967,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -145985,12 +145985,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -146001,12 +146001,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -146019,12 +146019,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -146035,12 +146035,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -146053,12 +146053,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -146069,12 +146069,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -146087,12 +146087,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -146103,12 +146103,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -146121,12 +146121,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -146137,12 +146137,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -146155,12 +146155,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -146171,12 +146171,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -146189,12 +146189,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -146205,12 +146205,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -146223,12 +146223,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -146239,12 +146239,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -146257,12 +146257,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -146273,12 +146273,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -146291,12 +146291,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -146307,12 +146307,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -146325,12 +146325,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -146341,12 +146341,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -146359,12 +146359,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -146375,12 +146375,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -146393,12 +146393,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -146409,12 +146409,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -146427,12 +146427,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -146443,12 +146443,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -146461,12 +146461,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -146477,12 +146477,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -146495,12 +146495,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -146511,12 +146511,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -146529,12 +146529,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -146545,12 +146545,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -146563,12 +146563,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -146579,12 +146579,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -146597,12 +146597,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -146613,12 +146613,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -146631,12 +146631,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -146647,12 +146647,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -146665,12 +146665,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -146681,12 +146681,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -146699,12 +146699,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -146715,12 +146715,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -146733,12 +146733,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -146749,12 +146749,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -146767,12 +146767,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -146783,12 +146783,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -146801,12 +146801,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -146817,12 +146817,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -146835,12 +146835,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -146851,12 +146851,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -146869,12 +146869,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -146885,12 +146885,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -146903,12 +146903,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -146919,12 +146919,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -146937,12 +146937,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -146953,12 +146953,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -146971,12 +146971,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -146987,12 +146987,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -147005,12 +147005,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -147021,12 +147021,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 38, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -147039,12 +147039,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -147055,12 +147055,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 38, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -147073,12 +147073,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -147089,12 +147089,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -147107,12 +147107,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -147123,12 +147123,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -147141,12 +147141,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -147157,12 +147157,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -147175,12 +147175,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -147191,12 +147191,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -147209,12 +147209,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -147225,12 +147225,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -147243,12 +147243,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -147259,12 +147259,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -147277,12 +147277,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -147293,12 +147293,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -147311,12 +147311,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -147327,12 +147327,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -147345,12 +147345,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -147361,12 +147361,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -147379,12 +147379,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -147395,12 +147395,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -147413,12 +147413,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -147429,12 +147429,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -147447,12 +147447,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -147463,12 +147463,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -147481,12 +147481,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -147497,12 +147497,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -147515,12 +147515,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -147531,12 +147531,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -147549,12 +147549,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -147565,12 +147565,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -147583,12 +147583,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -147599,12 +147599,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -147617,12 +147617,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -147633,12 +147633,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -147651,12 +147651,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -147667,12 +147667,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -147685,12 +147685,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -147701,12 +147701,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -147719,12 +147719,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -147735,12 +147735,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -147753,12 +147753,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -147769,12 +147769,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -147787,12 +147787,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -147803,12 +147803,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -147821,12 +147821,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -147837,12 +147837,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -147855,12 +147855,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -147871,12 +147871,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -147889,12 +147889,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -147905,12 +147905,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -147923,12 +147923,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -147939,12 +147939,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -147957,12 +147957,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -147973,12 +147973,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -147991,12 +147991,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -148007,12 +148007,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -148025,12 +148025,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -148041,12 +148041,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -148059,12 +148059,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -148075,12 +148075,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -148093,12 +148093,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -148109,12 +148109,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -148127,12 +148127,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -148143,12 +148143,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -148161,12 +148161,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -148177,12 +148177,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -148195,12 +148195,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -148211,12 +148211,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -148229,12 +148229,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -148245,12 +148245,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -148263,12 +148263,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -148279,12 +148279,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -148297,12 +148297,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -148313,12 +148313,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -148331,12 +148331,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -148347,12 +148347,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -148365,12 +148365,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -148381,12 +148381,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -148399,12 +148399,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -148415,12 +148415,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -148433,12 +148433,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -148449,12 +148449,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -148467,12 +148467,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -148483,12 +148483,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -148501,12 +148501,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -148517,12 +148517,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -148535,12 +148535,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -148551,12 +148551,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -148569,12 +148569,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -148585,12 +148585,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 38, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -148603,12 +148603,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -148619,12 +148619,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 38, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -148637,12 +148637,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -148653,12 +148653,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -148671,12 +148671,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -148687,12 +148687,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -148705,12 +148705,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = ba
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -148721,12 +148721,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = ba, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -148739,12 +148739,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = ba
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -148755,12 +148755,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = ba, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -148773,12 +148773,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -148789,12 +148789,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -148807,12 +148807,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -148823,12 +148823,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -148841,12 +148841,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -148857,12 +148857,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -148875,12 +148875,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -148891,12 +148891,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -148909,12 +148909,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -148925,12 +148925,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -148943,12 +148943,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -148959,12 +148959,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -148977,12 +148977,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -148993,12 +148993,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -149011,12 +149011,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -149027,12 +149027,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -149045,12 +149045,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -149061,12 +149061,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -149079,12 +149079,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -149095,12 +149095,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -149113,12 +149113,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -149129,12 +149129,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -149147,12 +149147,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -149163,12 +149163,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -149181,12 +149181,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -149197,12 +149197,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -149215,12 +149215,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -149231,12 +149231,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -149249,12 +149249,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -149265,12 +149265,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -149283,12 +149283,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -149299,12 +149299,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -149317,12 +149317,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -149333,12 +149333,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -149351,12 +149351,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -149367,12 +149367,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -149385,12 +149385,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -149401,12 +149401,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -149419,12 +149419,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -149435,12 +149435,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -149453,12 +149453,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -149469,12 +149469,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -149487,12 +149487,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -149503,12 +149503,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -149521,12 +149521,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -149537,12 +149537,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -149555,12 +149555,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -149571,12 +149571,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -149589,12 +149589,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -149605,12 +149605,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -149623,12 +149623,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -149639,12 +149639,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -149657,12 +149657,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -149673,12 +149673,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -149691,12 +149691,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -149707,12 +149707,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -149725,12 +149725,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -149741,12 +149741,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -149759,12 +149759,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -149775,12 +149775,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -149793,12 +149793,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -149809,12 +149809,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -149827,12 +149827,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -149843,12 +149843,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -149861,12 +149861,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -149877,12 +149877,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -149895,12 +149895,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -149911,12 +149911,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -149929,12 +149929,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -149945,12 +149945,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -149963,12 +149963,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -149979,12 +149979,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -149997,12 +149997,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -150013,12 +150013,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -150031,12 +150031,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -150047,12 +150047,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -150065,12 +150065,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -150081,12 +150081,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -150099,12 +150099,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -150115,12 +150115,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -150133,12 +150133,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -150149,12 +150149,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 38, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -150167,12 +150167,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -150183,12 +150183,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 78, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -150201,12 +150201,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -150217,12 +150217,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 78, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -150235,12 +150235,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 7a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -150251,12 +150251,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 7a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -150269,12 +150269,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 7a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -150285,12 +150285,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 7a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -150303,12 +150303,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 7a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -150319,12 +150319,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 7a, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -150337,12 +150337,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -150353,12 +150353,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -150371,12 +150371,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -150387,12 +150387,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -150405,12 +150405,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -150421,12 +150421,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -150439,12 +150439,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -150455,12 +150455,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -150473,12 +150473,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -150489,12 +150489,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -150507,12 +150507,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -150523,12 +150523,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -150541,12 +150541,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -150557,12 +150557,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -150575,12 +150575,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -150591,12 +150591,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -150609,12 +150609,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -150625,12 +150625,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -150643,12 +150643,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -150659,12 +150659,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -150677,12 +150677,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -150693,12 +150693,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -150711,12 +150711,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -150727,12 +150727,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -150745,12 +150745,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -150761,12 +150761,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -150779,12 +150779,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -150795,12 +150795,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -150813,12 +150813,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -150829,12 +150829,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -150847,12 +150847,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -150863,12 +150863,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -150881,12 +150881,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -150897,12 +150897,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -150915,12 +150915,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -150931,12 +150931,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -150949,12 +150949,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -150965,12 +150965,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -150983,12 +150983,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -150999,12 +150999,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -151017,12 +151017,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -151033,12 +151033,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -151051,12 +151051,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -151067,12 +151067,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -151085,12 +151085,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -151101,12 +151101,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -151119,12 +151119,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -151135,12 +151135,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -151153,12 +151153,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -151169,12 +151169,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -151187,12 +151187,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -151203,12 +151203,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -151221,12 +151221,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -151237,12 +151237,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -151255,12 +151255,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -151271,12 +151271,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -151289,12 +151289,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -151305,12 +151305,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -151323,12 +151323,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -151339,12 +151339,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -151357,12 +151357,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -151373,12 +151373,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -151391,12 +151391,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -151407,12 +151407,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -151425,12 +151425,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -151441,12 +151441,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -151459,12 +151459,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -151475,12 +151475,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -151493,12 +151493,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -151509,12 +151509,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -151527,12 +151527,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -151543,12 +151543,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -151561,12 +151561,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -151577,12 +151577,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -151595,12 +151595,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -151611,12 +151611,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -151629,12 +151629,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -151645,12 +151645,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -151663,12 +151663,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -151679,12 +151679,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -151697,12 +151697,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -151713,12 +151713,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 38, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -151731,12 +151731,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -151747,12 +151747,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 78, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -151765,12 +151765,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -151781,12 +151781,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f8, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -151799,12 +151799,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -151815,12 +151815,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f8, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -151833,12 +151833,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = fa
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -151849,12 +151849,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = fa, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -151867,12 +151867,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = fa
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -151883,12 +151883,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = fa, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -151901,12 +151901,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -151917,12 +151917,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -151935,12 +151935,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -151951,12 +151951,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -151969,12 +151969,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -151985,12 +151985,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -152003,12 +152003,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -152019,12 +152019,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -152037,12 +152037,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -152053,12 +152053,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -152071,12 +152071,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -152087,12 +152087,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -152105,12 +152105,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -152121,12 +152121,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -152139,12 +152139,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -152155,12 +152155,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -152173,12 +152173,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -152189,12 +152189,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -152207,12 +152207,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -152223,12 +152223,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -152241,12 +152241,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -152257,12 +152257,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -152275,12 +152275,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -152291,12 +152291,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -152309,12 +152309,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -152325,12 +152325,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -152343,12 +152343,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -152359,12 +152359,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -152377,12 +152377,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -152393,12 +152393,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -152411,12 +152411,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -152427,12 +152427,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -152445,12 +152445,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -152461,12 +152461,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -152479,12 +152479,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -152495,12 +152495,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -152513,12 +152513,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -152529,12 +152529,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -152547,12 +152547,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -152563,12 +152563,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -152581,12 +152581,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -152597,12 +152597,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -152615,12 +152615,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -152631,12 +152631,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -152649,12 +152649,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -152665,12 +152665,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -152683,12 +152683,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -152699,12 +152699,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -152717,12 +152717,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -152733,12 +152733,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -152751,12 +152751,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -152767,12 +152767,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -152785,12 +152785,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -152801,12 +152801,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -152819,12 +152819,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -152835,12 +152835,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -152853,12 +152853,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -152869,12 +152869,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -152887,12 +152887,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -152903,12 +152903,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -152921,12 +152921,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -152937,12 +152937,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -152955,12 +152955,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -152971,12 +152971,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -152989,12 +152989,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -153005,12 +153005,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -153023,12 +153023,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -153039,12 +153039,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -153057,12 +153057,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -153073,12 +153073,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -153091,12 +153091,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -153107,12 +153107,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -153125,12 +153125,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -153141,12 +153141,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -153159,12 +153159,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -153175,12 +153175,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -153193,12 +153193,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -153209,12 +153209,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -153227,12 +153227,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -153243,12 +153243,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -153261,12 +153261,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -153277,12 +153277,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -153295,12 +153295,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -153311,12 +153311,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -153329,12 +153329,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -153345,12 +153345,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -153363,12 +153363,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -153379,12 +153379,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -153397,12 +153397,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -153413,12 +153413,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -153431,12 +153431,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -153447,12 +153447,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -153465,12 +153465,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -153481,12 +153481,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -153499,12 +153499,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -153515,12 +153515,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -153533,12 +153533,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -153549,12 +153549,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -153567,12 +153567,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -153583,12 +153583,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -153601,12 +153601,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -153617,12 +153617,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -153635,12 +153635,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -153651,12 +153651,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -153669,12 +153669,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -153685,12 +153685,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -153703,12 +153703,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -153719,12 +153719,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -153737,12 +153737,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -153753,12 +153753,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -153771,12 +153771,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -153787,12 +153787,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -153805,12 +153805,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -153821,12 +153821,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -153839,12 +153839,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -153855,12 +153855,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -153873,12 +153873,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -153889,12 +153889,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -153907,12 +153907,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -153923,12 +153923,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -153941,12 +153941,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -153957,12 +153957,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -153975,12 +153975,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -153991,12 +153991,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -154009,12 +154009,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -154025,12 +154025,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -154043,12 +154043,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -154059,12 +154059,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -154077,12 +154077,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -154093,12 +154093,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -154111,12 +154111,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -154127,12 +154127,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -154145,12 +154145,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -154161,12 +154161,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -154179,12 +154179,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -154195,12 +154195,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -154213,12 +154213,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -154229,12 +154229,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -154247,12 +154247,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -154263,12 +154263,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -154281,12 +154281,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -154297,12 +154297,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -154315,12 +154315,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -154331,12 +154331,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -154349,12 +154349,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -154365,12 +154365,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -154383,12 +154383,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -154399,12 +154399,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -154417,12 +154417,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -154433,12 +154433,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -154451,12 +154451,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -154467,12 +154467,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -154485,12 +154485,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -154501,12 +154501,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -154519,12 +154519,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -154535,12 +154535,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -154553,12 +154553,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -154569,12 +154569,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -154587,12 +154587,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -154603,12 +154603,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -154621,12 +154621,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -154637,12 +154637,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -154655,12 +154655,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -154671,12 +154671,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -154689,12 +154689,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -154705,12 +154705,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -154723,12 +154723,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -154739,12 +154739,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -154757,12 +154757,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -154773,12 +154773,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -154791,12 +154791,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -154807,12 +154807,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -154825,12 +154825,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -154841,12 +154841,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -154859,12 +154859,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -154875,12 +154875,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 86, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -154893,12 +154893,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -154909,12 +154909,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 86, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -154927,12 +154927,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -154943,12 +154943,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 86, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -154961,12 +154961,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -154977,12 +154977,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 86, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -154995,12 +154995,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -155011,12 +155011,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 86, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -155029,12 +155029,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -155045,12 +155045,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -155063,12 +155063,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -155079,12 +155079,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -155097,12 +155097,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -155113,12 +155113,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -155131,12 +155131,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -155147,12 +155147,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -155165,12 +155165,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -155181,12 +155181,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -155199,12 +155199,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -155215,12 +155215,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -155233,12 +155233,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -155249,12 +155249,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -155267,12 +155267,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -155283,12 +155283,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -155301,12 +155301,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -155317,12 +155317,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -155335,12 +155335,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -155351,12 +155351,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -155369,12 +155369,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -155385,12 +155385,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -155403,12 +155403,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -155419,12 +155419,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -155437,12 +155437,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -155453,12 +155453,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -155471,12 +155471,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -155487,12 +155487,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -155505,12 +155505,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -155521,12 +155521,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -155539,12 +155539,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -155555,12 +155555,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -155573,12 +155573,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -155589,12 +155589,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -155607,12 +155607,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -155623,12 +155623,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -155641,12 +155641,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -155657,12 +155657,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -155675,12 +155675,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -155691,12 +155691,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -155709,12 +155709,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -155725,12 +155725,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -155743,12 +155743,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -155759,12 +155759,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -155777,12 +155777,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -155793,12 +155793,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -155811,12 +155811,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -155827,12 +155827,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -155845,12 +155845,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -155861,12 +155861,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -155879,12 +155879,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -155895,12 +155895,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -155913,12 +155913,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -155929,12 +155929,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -155947,12 +155947,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -155963,12 +155963,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -155981,12 +155981,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -155997,12 +155997,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -156015,12 +156015,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -156031,12 +156031,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -156049,12 +156049,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -156065,12 +156065,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -156083,12 +156083,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -156099,12 +156099,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -156117,12 +156117,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -156133,12 +156133,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -156151,12 +156151,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -156167,12 +156167,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -156185,12 +156185,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -156201,12 +156201,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -156219,12 +156219,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -156235,12 +156235,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -156253,12 +156253,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -156269,12 +156269,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -156287,12 +156287,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -156303,12 +156303,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -156321,12 +156321,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -156337,12 +156337,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -156355,12 +156355,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -156371,12 +156371,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -156389,12 +156389,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -156405,12 +156405,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -156423,12 +156423,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -156439,12 +156439,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -156457,12 +156457,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 46
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -156473,12 +156473,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 46, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -156491,12 +156491,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 46
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -156507,12 +156507,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 46, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -156525,12 +156525,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 46
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -156541,12 +156541,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 46, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -156559,12 +156559,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 46
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -156575,12 +156575,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 46, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -156593,12 +156593,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -156609,12 +156609,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -156627,12 +156627,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -156643,12 +156643,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -156661,12 +156661,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -156677,12 +156677,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -156695,12 +156695,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -156711,12 +156711,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -156729,12 +156729,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -156745,12 +156745,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -156763,12 +156763,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -156779,12 +156779,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -156797,12 +156797,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -156813,12 +156813,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -156831,12 +156831,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -156847,12 +156847,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -156865,12 +156865,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -156881,12 +156881,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -156899,12 +156899,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -156915,12 +156915,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -156933,12 +156933,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -156949,12 +156949,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -156967,12 +156967,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -156983,12 +156983,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -157001,12 +157001,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -157017,12 +157017,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -157035,12 +157035,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -157051,12 +157051,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -157069,12 +157069,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -157085,12 +157085,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -157103,12 +157103,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -157119,12 +157119,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -157137,12 +157137,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -157153,12 +157153,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -157171,12 +157171,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -157187,12 +157187,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -157205,12 +157205,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -157221,12 +157221,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -157239,12 +157239,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -157255,12 +157255,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -157273,12 +157273,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -157289,12 +157289,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -157307,12 +157307,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 46
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -157323,12 +157323,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -157341,12 +157341,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 46
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -157357,12 +157357,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -157375,12 +157375,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 46
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -157391,12 +157391,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -157409,12 +157409,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 46
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -157425,12 +157425,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -157443,12 +157443,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 46
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -157459,12 +157459,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -157477,12 +157477,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 46
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -157493,12 +157493,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -157511,12 +157511,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -157527,12 +157527,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -157545,12 +157545,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -157561,12 +157561,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -157579,12 +157579,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -157595,12 +157595,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -157613,12 +157613,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -157629,12 +157629,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -157647,12 +157647,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -157663,12 +157663,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -157681,12 +157681,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -157697,12 +157697,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -157715,12 +157715,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -157731,12 +157731,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -157749,12 +157749,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -157765,12 +157765,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -157783,12 +157783,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -157799,12 +157799,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -157817,12 +157817,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -157833,12 +157833,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -157851,12 +157851,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -157867,12 +157867,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -157885,12 +157885,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -157901,12 +157901,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -157919,12 +157919,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -157935,12 +157935,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -157953,12 +157953,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -157969,12 +157969,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -157987,12 +157987,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = c2
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -158003,12 +158003,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c2, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -158021,12 +158021,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = c6
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -158037,12 +158037,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c6, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -158055,12 +158055,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = c6
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -158071,12 +158071,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c6, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -158089,12 +158089,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = c6
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -158105,12 +158105,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c6, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -158123,12 +158123,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = c6
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -158139,12 +158139,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c6, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -158157,12 +158157,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -158173,12 +158173,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -158191,12 +158191,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -158207,12 +158207,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -158225,12 +158225,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -158241,12 +158241,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -158259,12 +158259,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -158275,12 +158275,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -158293,12 +158293,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -158309,12 +158309,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -158327,12 +158327,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -158343,12 +158343,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -158361,12 +158361,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -158377,12 +158377,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -158395,12 +158395,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -158411,12 +158411,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -158429,12 +158429,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -158445,12 +158445,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -158463,12 +158463,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -158479,12 +158479,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -158497,12 +158497,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -158513,12 +158513,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -158531,12 +158531,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -158547,12 +158547,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -158565,12 +158565,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -158581,12 +158581,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -158599,12 +158599,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -158615,12 +158615,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -158633,12 +158633,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -158649,12 +158649,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -158667,12 +158667,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -158683,12 +158683,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -158701,12 +158701,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -158717,12 +158717,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -158735,12 +158735,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -158751,12 +158751,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -158769,12 +158769,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -158785,12 +158785,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -158803,12 +158803,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -158819,12 +158819,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -158837,12 +158837,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -158853,12 +158853,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -158871,12 +158871,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 46
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -158887,12 +158887,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -158905,12 +158905,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 46
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -158921,12 +158921,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -158939,12 +158939,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 46
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -158955,12 +158955,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -158973,12 +158973,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 46
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -158989,12 +158989,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -159007,12 +159007,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 46
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -159023,12 +159023,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -159041,12 +159041,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 46
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -159057,12 +159057,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -159075,12 +159075,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -159091,12 +159091,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -159109,12 +159109,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -159125,12 +159125,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -159143,12 +159143,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -159159,12 +159159,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -159177,12 +159177,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -159193,12 +159193,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -159211,12 +159211,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -159227,12 +159227,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -159245,12 +159245,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -159261,12 +159261,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -159279,12 +159279,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -159295,12 +159295,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -159313,12 +159313,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -159329,12 +159329,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -159347,12 +159347,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -159363,12 +159363,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -159381,12 +159381,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -159397,12 +159397,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -159415,12 +159415,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -159431,12 +159431,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -159449,12 +159449,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -159465,12 +159465,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -159483,12 +159483,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -159499,12 +159499,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -159517,12 +159517,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -159533,12 +159533,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -159551,12 +159551,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -159567,12 +159567,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -159585,12 +159585,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 26
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -159601,12 +159601,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 26, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -159619,12 +159619,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 26
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -159635,12 +159635,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 26, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -159653,12 +159653,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 26
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -159669,12 +159669,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 26, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -159687,12 +159687,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 26
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -159703,12 +159703,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 26, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -159721,12 +159721,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -159737,12 +159737,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -159755,12 +159755,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -159771,12 +159771,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -159789,12 +159789,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -159805,12 +159805,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -159823,12 +159823,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -159839,12 +159839,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -159857,12 +159857,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -159873,12 +159873,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -159891,12 +159891,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -159907,12 +159907,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -159925,12 +159925,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -159941,12 +159941,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -159959,12 +159959,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -159975,12 +159975,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -159993,12 +159993,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -160009,12 +160009,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -160027,12 +160027,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -160043,12 +160043,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -160061,12 +160061,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -160077,12 +160077,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -160095,12 +160095,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -160111,12 +160111,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -160129,12 +160129,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -160145,12 +160145,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -160163,12 +160163,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -160179,12 +160179,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -160197,12 +160197,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -160213,12 +160213,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -160231,12 +160231,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -160247,12 +160247,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -160265,12 +160265,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -160281,12 +160281,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -160299,12 +160299,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -160315,12 +160315,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -160333,12 +160333,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -160349,12 +160349,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -160367,12 +160367,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -160383,12 +160383,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -160401,12 +160401,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -160417,12 +160417,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -160435,12 +160435,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -160451,12 +160451,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -160469,12 +160469,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -160485,12 +160485,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -160503,12 +160503,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -160519,12 +160519,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -160537,12 +160537,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -160553,12 +160553,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -160571,12 +160571,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -160587,12 +160587,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -160605,12 +160605,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -160621,12 +160621,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -160639,12 +160639,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -160655,12 +160655,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -160673,12 +160673,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -160689,12 +160689,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -160707,12 +160707,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -160723,12 +160723,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -160741,12 +160741,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -160757,12 +160757,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -160775,12 +160775,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -160791,12 +160791,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -160809,12 +160809,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -160825,12 +160825,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -160843,12 +160843,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -160859,12 +160859,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -160877,12 +160877,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -160893,12 +160893,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -160911,12 +160911,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -160927,12 +160927,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -160945,12 +160945,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -160961,12 +160961,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -160979,12 +160979,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -160995,12 +160995,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -161013,12 +161013,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -161029,12 +161029,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -161047,12 +161047,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -161063,12 +161063,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -161081,12 +161081,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -161097,12 +161097,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -161115,12 +161115,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -161131,12 +161131,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 86, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -161149,12 +161149,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -161165,12 +161165,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 86, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -161183,12 +161183,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = a6
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -161199,12 +161199,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a6, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -161217,12 +161217,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = a6
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -161233,12 +161233,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a6, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -161251,12 +161251,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = a6
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -161267,12 +161267,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a6, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -161285,12 +161285,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -161301,12 +161301,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -161319,12 +161319,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -161335,12 +161335,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -161353,12 +161353,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -161369,12 +161369,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -161387,12 +161387,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -161403,12 +161403,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -161421,12 +161421,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -161437,12 +161437,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -161455,12 +161455,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -161471,12 +161471,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -161489,12 +161489,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -161505,12 +161505,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -161523,12 +161523,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -161539,12 +161539,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -161557,12 +161557,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -161573,12 +161573,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -161591,12 +161591,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -161607,12 +161607,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -161625,12 +161625,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -161641,12 +161641,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -161659,12 +161659,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -161675,12 +161675,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -161693,12 +161693,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -161709,12 +161709,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -161727,12 +161727,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -161743,12 +161743,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -161761,12 +161761,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -161777,12 +161777,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -161795,12 +161795,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -161811,12 +161811,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -161829,12 +161829,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -161845,12 +161845,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -161863,12 +161863,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -161879,12 +161879,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -161897,12 +161897,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -161913,12 +161913,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -161931,12 +161931,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -161947,12 +161947,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -161965,12 +161965,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -161981,12 +161981,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -161999,12 +161999,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -162015,12 +162015,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -162033,12 +162033,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -162049,12 +162049,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -162067,12 +162067,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -162083,12 +162083,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -162101,12 +162101,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -162117,12 +162117,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -162135,12 +162135,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -162151,12 +162151,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -162169,12 +162169,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -162185,12 +162185,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -162203,12 +162203,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -162219,12 +162219,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -162237,12 +162237,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -162253,12 +162253,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -162271,12 +162271,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -162287,12 +162287,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -162305,12 +162305,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -162321,12 +162321,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -162339,12 +162339,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -162355,12 +162355,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -162373,12 +162373,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -162389,12 +162389,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -162407,12 +162407,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -162423,12 +162423,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -162441,12 +162441,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -162457,12 +162457,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -162475,12 +162475,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -162491,12 +162491,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -162509,12 +162509,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -162525,12 +162525,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -162543,12 +162543,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -162559,12 +162559,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -162577,12 +162577,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -162593,12 +162593,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -162611,12 +162611,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -162627,12 +162627,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -162645,12 +162645,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -162661,12 +162661,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -162679,12 +162679,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -162695,12 +162695,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -162713,12 +162713,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 26
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -162729,12 +162729,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 26, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -162747,12 +162747,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 66
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -162763,12 +162763,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 66, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -162781,12 +162781,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 66
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -162797,12 +162797,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 66, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -162815,12 +162815,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 66
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -162831,12 +162831,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 66, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -162849,12 +162849,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -162865,12 +162865,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -162883,12 +162883,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -162899,12 +162899,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -162917,12 +162917,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -162933,12 +162933,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -162951,12 +162951,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -162967,12 +162967,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -162985,12 +162985,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -163001,12 +163001,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -163019,12 +163019,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -163035,12 +163035,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -163053,12 +163053,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -163069,12 +163069,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -163087,12 +163087,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -163103,12 +163103,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -163121,12 +163121,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -163137,12 +163137,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -163155,12 +163155,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -163171,12 +163171,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -163189,12 +163189,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -163205,12 +163205,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -163223,12 +163223,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -163239,12 +163239,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -163257,12 +163257,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -163273,12 +163273,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -163291,12 +163291,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -163307,12 +163307,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -163325,12 +163325,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -163341,12 +163341,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -163359,12 +163359,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -163375,12 +163375,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -163393,12 +163393,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -163409,12 +163409,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -163427,12 +163427,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -163443,12 +163443,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -163461,12 +163461,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -163477,12 +163477,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -163495,12 +163495,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -163511,12 +163511,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -163529,12 +163529,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -163545,12 +163545,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -163563,12 +163563,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 46
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -163579,12 +163579,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -163597,12 +163597,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 46
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -163613,12 +163613,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -163631,12 +163631,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 46
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -163647,12 +163647,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -163665,12 +163665,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 46
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -163681,12 +163681,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -163699,12 +163699,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 46
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -163715,12 +163715,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -163733,12 +163733,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 46
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -163749,12 +163749,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -163767,12 +163767,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -163783,12 +163783,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -163801,12 +163801,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -163817,12 +163817,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -163835,12 +163835,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -163851,12 +163851,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -163869,12 +163869,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -163885,12 +163885,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -163903,12 +163903,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -163919,12 +163919,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -163937,12 +163937,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -163953,12 +163953,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -163971,12 +163971,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -163987,12 +163987,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -164005,12 +164005,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -164021,12 +164021,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -164039,12 +164039,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -164055,12 +164055,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -164073,12 +164073,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -164089,12 +164089,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -164107,12 +164107,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -164123,12 +164123,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -164141,12 +164141,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -164157,12 +164157,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -164175,12 +164175,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -164191,12 +164191,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -164209,12 +164209,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -164225,12 +164225,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -164243,12 +164243,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -164259,12 +164259,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -164277,12 +164277,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = e2
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -164293,12 +164293,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e2, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -164311,12 +164311,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = e6
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -164327,12 +164327,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e6, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -164345,12 +164345,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = e6
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -164361,12 +164361,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e6, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -164379,12 +164379,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = e6
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -164395,12 +164395,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e6, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -164413,12 +164413,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -164429,12 +164429,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -164447,12 +164447,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -164463,12 +164463,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -164481,12 +164481,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -164497,12 +164497,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -164515,12 +164515,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -164531,12 +164531,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -164549,12 +164549,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -164565,12 +164565,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -164583,12 +164583,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -164599,12 +164599,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -164617,12 +164617,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -164633,12 +164633,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -164651,12 +164651,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -164667,12 +164667,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -164685,12 +164685,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -164701,12 +164701,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -164719,12 +164719,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -164735,12 +164735,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -164753,12 +164753,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -164769,12 +164769,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -164787,12 +164787,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -164803,12 +164803,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -164821,12 +164821,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -164837,12 +164837,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -164855,12 +164855,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -164871,12 +164871,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -164889,12 +164889,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -164905,12 +164905,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -164923,12 +164923,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -164939,12 +164939,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -164957,12 +164957,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -164973,12 +164973,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -164991,12 +164991,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -165007,12 +165007,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -165025,12 +165025,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -165041,12 +165041,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -165059,12 +165059,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -165075,12 +165075,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -165093,12 +165093,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -165109,12 +165109,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -165127,12 +165127,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 46
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -165143,12 +165143,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -165161,12 +165161,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -165177,12 +165177,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -165195,12 +165195,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -165211,12 +165211,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -165229,12 +165229,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -165245,12 +165245,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -165263,12 +165263,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -165279,12 +165279,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -165297,12 +165297,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -165313,12 +165313,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -165331,12 +165331,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -165347,12 +165347,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -165365,12 +165365,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -165381,12 +165381,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -165399,12 +165399,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -165415,12 +165415,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -165433,12 +165433,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -165449,12 +165449,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -165467,12 +165467,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -165483,12 +165483,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -165501,12 +165501,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -165517,12 +165517,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -165535,12 +165535,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -165551,12 +165551,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -165569,12 +165569,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -165585,12 +165585,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -165603,12 +165603,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -165619,12 +165619,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -165637,12 +165637,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -165653,12 +165653,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -165671,12 +165671,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -165687,12 +165687,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -165705,12 +165705,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -165721,12 +165721,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -165739,12 +165739,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -165755,12 +165755,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -165773,12 +165773,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -165789,12 +165789,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -165807,12 +165807,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -165823,12 +165823,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 16, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -165841,12 +165841,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -165857,12 +165857,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 16, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -165875,12 +165875,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -165891,12 +165891,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 16, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -165909,12 +165909,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -165925,12 +165925,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 16, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -165943,12 +165943,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -165959,12 +165959,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 16, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -165977,12 +165977,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -165993,12 +165993,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -166011,12 +166011,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -166027,12 +166027,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -166045,12 +166045,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -166061,12 +166061,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -166079,12 +166079,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -166095,12 +166095,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -166113,12 +166113,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -166129,12 +166129,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -166147,12 +166147,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -166163,12 +166163,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -166181,12 +166181,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -166197,12 +166197,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -166215,12 +166215,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -166231,12 +166231,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -166249,12 +166249,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -166265,12 +166265,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -166283,12 +166283,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -166299,12 +166299,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -166317,12 +166317,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -166333,12 +166333,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -166351,12 +166351,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -166367,12 +166367,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -166385,12 +166385,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -166401,12 +166401,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -166419,12 +166419,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -166435,12 +166435,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -166453,12 +166453,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -166469,12 +166469,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -166487,12 +166487,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -166503,12 +166503,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -166521,12 +166521,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -166537,12 +166537,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -166555,12 +166555,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -166571,12 +166571,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -166589,12 +166589,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -166605,12 +166605,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -166623,12 +166623,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -166639,12 +166639,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -166657,12 +166657,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -166673,12 +166673,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -166691,12 +166691,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -166707,12 +166707,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -166725,12 +166725,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -166741,12 +166741,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -166759,12 +166759,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -166775,12 +166775,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -166793,12 +166793,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -166809,12 +166809,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -166827,12 +166827,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -166843,12 +166843,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -166861,12 +166861,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -166877,12 +166877,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -166895,12 +166895,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -166911,12 +166911,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -166929,12 +166929,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -166945,12 +166945,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -166963,12 +166963,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -166979,12 +166979,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -166997,12 +166997,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -167013,12 +167013,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -167031,12 +167031,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -167047,12 +167047,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -167065,12 +167065,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -167081,12 +167081,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -167099,12 +167099,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -167115,12 +167115,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -167133,12 +167133,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -167149,12 +167149,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -167167,12 +167167,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -167183,12 +167183,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -167201,12 +167201,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -167217,12 +167217,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -167235,12 +167235,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -167251,12 +167251,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -167269,12 +167269,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -167285,12 +167285,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -167303,12 +167303,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -167319,12 +167319,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -167337,12 +167337,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -167353,12 +167353,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -167371,12 +167371,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -167387,12 +167387,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 16, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -167405,12 +167405,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -167421,12 +167421,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 16, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -167439,12 +167439,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 96
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -167455,12 +167455,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 96, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -167473,12 +167473,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 96
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -167489,12 +167489,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 96, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -167507,12 +167507,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 96
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -167523,12 +167523,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 96, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -167541,12 +167541,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -167557,12 +167557,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -167575,12 +167575,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -167591,12 +167591,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -167609,12 +167609,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -167625,12 +167625,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -167643,12 +167643,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -167659,12 +167659,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -167677,12 +167677,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -167693,12 +167693,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -167711,12 +167711,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -167727,12 +167727,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -167745,12 +167745,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -167761,12 +167761,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -167779,12 +167779,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -167795,12 +167795,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -167813,12 +167813,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -167829,12 +167829,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -167847,12 +167847,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -167863,12 +167863,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -167881,12 +167881,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -167897,12 +167897,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -167915,12 +167915,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -167931,12 +167931,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -167949,12 +167949,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -167965,12 +167965,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -167983,12 +167983,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -167999,12 +167999,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -168017,12 +168017,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -168033,12 +168033,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -168051,12 +168051,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -168067,12 +168067,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -168085,12 +168085,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -168101,12 +168101,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -168119,12 +168119,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -168135,12 +168135,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -168153,12 +168153,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -168169,12 +168169,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -168187,12 +168187,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -168203,12 +168203,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -168221,12 +168221,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -168237,12 +168237,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -168255,12 +168255,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -168271,12 +168271,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -168289,12 +168289,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -168305,12 +168305,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -168323,12 +168323,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -168339,12 +168339,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -168357,12 +168357,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -168373,12 +168373,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -168391,12 +168391,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -168407,12 +168407,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -168425,12 +168425,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -168441,12 +168441,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -168459,12 +168459,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -168475,12 +168475,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -168493,12 +168493,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -168509,12 +168509,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -168527,12 +168527,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -168543,12 +168543,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -168561,12 +168561,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -168577,12 +168577,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -168595,12 +168595,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -168611,12 +168611,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -168629,12 +168629,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -168645,12 +168645,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -168663,12 +168663,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -168679,12 +168679,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -168697,12 +168697,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -168713,12 +168713,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -168731,12 +168731,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -168747,12 +168747,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -168765,12 +168765,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -168781,12 +168781,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -168799,12 +168799,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -168815,12 +168815,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -168833,12 +168833,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -168849,12 +168849,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -168867,12 +168867,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -168883,12 +168883,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -168901,12 +168901,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -168917,12 +168917,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -168935,12 +168935,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -168951,12 +168951,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 16, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -168969,12 +168969,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -168985,12 +168985,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 16, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -169003,12 +169003,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 56
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -169019,12 +169019,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 56, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -169037,12 +169037,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 56
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -169053,12 +169053,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 56, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -169071,12 +169071,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 56
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -169087,12 +169087,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 56, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -169105,12 +169105,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -169121,12 +169121,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -169139,12 +169139,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -169155,12 +169155,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -169173,12 +169173,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -169189,12 +169189,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -169207,12 +169207,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -169223,12 +169223,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -169241,12 +169241,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -169257,12 +169257,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -169275,12 +169275,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -169291,12 +169291,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -169309,12 +169309,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -169325,12 +169325,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -169343,12 +169343,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -169359,12 +169359,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -169377,12 +169377,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -169393,12 +169393,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -169411,12 +169411,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -169427,12 +169427,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -169445,12 +169445,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -169461,12 +169461,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -169479,12 +169479,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -169495,12 +169495,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -169513,12 +169513,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -169529,12 +169529,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -169547,12 +169547,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -169563,12 +169563,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -169581,12 +169581,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -169597,12 +169597,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -169615,12 +169615,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -169631,12 +169631,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -169649,12 +169649,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -169665,12 +169665,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -169683,12 +169683,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -169699,12 +169699,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -169717,12 +169717,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -169733,12 +169733,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -169751,12 +169751,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -169767,12 +169767,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -169785,12 +169785,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -169801,12 +169801,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -169819,12 +169819,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 46
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -169835,12 +169835,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -169853,12 +169853,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 46
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -169869,12 +169869,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -169887,12 +169887,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 46
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -169903,12 +169903,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -169921,12 +169921,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 46
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -169937,12 +169937,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -169955,12 +169955,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 46
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -169971,12 +169971,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -169989,12 +169989,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 46
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -170005,12 +170005,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -170023,12 +170023,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -170039,12 +170039,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -170057,12 +170057,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -170073,12 +170073,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -170091,12 +170091,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -170107,12 +170107,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -170125,12 +170125,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -170141,12 +170141,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -170159,12 +170159,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -170175,12 +170175,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -170193,12 +170193,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -170209,12 +170209,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -170227,12 +170227,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -170243,12 +170243,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -170261,12 +170261,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -170277,12 +170277,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -170295,12 +170295,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -170311,12 +170311,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -170329,12 +170329,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -170345,12 +170345,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -170363,12 +170363,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -170379,12 +170379,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -170397,12 +170397,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -170413,12 +170413,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -170431,12 +170431,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -170447,12 +170447,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -170465,12 +170465,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -170481,12 +170481,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -170499,12 +170499,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -170515,12 +170515,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 16, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -170533,12 +170533,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = c6
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -170549,12 +170549,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c6, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -170567,12 +170567,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = c6
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -170583,12 +170583,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c6, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -170601,12 +170601,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = d6
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -170617,12 +170617,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d6, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -170635,12 +170635,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = d6
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -170651,12 +170651,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d6, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -170669,12 +170669,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -170685,12 +170685,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -170703,12 +170703,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -170719,12 +170719,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -170737,12 +170737,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -170753,12 +170753,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -170771,12 +170771,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -170787,12 +170787,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -170805,12 +170805,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -170821,12 +170821,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -170839,12 +170839,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -170855,12 +170855,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -170873,12 +170873,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -170889,12 +170889,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -170907,12 +170907,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -170923,12 +170923,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -170941,12 +170941,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -170957,12 +170957,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -170975,12 +170975,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -170991,12 +170991,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -171009,12 +171009,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -171025,12 +171025,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -171043,12 +171043,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -171059,12 +171059,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -171077,12 +171077,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -171093,12 +171093,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -171111,12 +171111,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -171127,12 +171127,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -171145,12 +171145,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -171161,12 +171161,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -171179,12 +171179,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -171195,12 +171195,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -171213,12 +171213,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -171229,12 +171229,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -171247,12 +171247,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -171263,12 +171263,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -171281,12 +171281,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -171297,12 +171297,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -171315,12 +171315,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -171331,12 +171331,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -171349,12 +171349,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -171365,12 +171365,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -171383,12 +171383,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 46
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -171399,12 +171399,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -171417,12 +171417,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -171433,12 +171433,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -171451,12 +171451,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -171467,12 +171467,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -171485,12 +171485,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -171501,12 +171501,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -171519,12 +171519,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -171535,12 +171535,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -171553,12 +171553,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -171569,12 +171569,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -171587,12 +171587,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -171603,12 +171603,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -171621,12 +171621,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -171637,12 +171637,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -171655,12 +171655,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -171671,12 +171671,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -171689,12 +171689,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -171705,12 +171705,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -171723,12 +171723,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -171739,12 +171739,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -171757,12 +171757,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -171773,12 +171773,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -171791,12 +171791,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -171807,12 +171807,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -171825,12 +171825,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -171841,12 +171841,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -171859,12 +171859,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -171875,12 +171875,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -171893,12 +171893,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -171909,12 +171909,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -171927,12 +171927,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -171943,12 +171943,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -171961,12 +171961,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -171977,12 +171977,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -171995,12 +171995,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -172011,12 +172011,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -172029,12 +172029,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -172045,12 +172045,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -172063,12 +172063,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -172079,12 +172079,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 16, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -172097,12 +172097,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -172113,12 +172113,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 36, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -172131,12 +172131,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -172147,12 +172147,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 36, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -172165,12 +172165,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -172181,12 +172181,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 36, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -172199,12 +172199,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -172215,12 +172215,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 36, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -172233,12 +172233,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -172249,12 +172249,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -172267,12 +172267,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -172283,12 +172283,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -172301,12 +172301,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -172317,12 +172317,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -172335,12 +172335,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -172351,12 +172351,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -172369,12 +172369,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -172385,12 +172385,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -172403,12 +172403,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -172419,12 +172419,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -172437,12 +172437,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -172453,12 +172453,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -172471,12 +172471,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -172487,12 +172487,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -172505,12 +172505,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -172521,12 +172521,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -172539,12 +172539,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -172555,12 +172555,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -172573,12 +172573,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -172589,12 +172589,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -172607,12 +172607,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -172623,12 +172623,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -172641,12 +172641,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -172657,12 +172657,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -172675,12 +172675,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -172691,12 +172691,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -172709,12 +172709,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -172725,12 +172725,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -172743,12 +172743,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -172759,12 +172759,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -172777,12 +172777,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -172793,12 +172793,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -172811,12 +172811,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -172827,12 +172827,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -172845,12 +172845,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -172861,12 +172861,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -172879,12 +172879,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -172895,12 +172895,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -172913,12 +172913,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -172929,12 +172929,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -172947,12 +172947,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -172963,12 +172963,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -172981,12 +172981,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -172997,12 +172997,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -173015,12 +173015,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -173031,12 +173031,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -173049,12 +173049,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -173065,12 +173065,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -173083,12 +173083,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -173099,12 +173099,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -173117,12 +173117,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -173133,12 +173133,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -173151,12 +173151,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -173167,12 +173167,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -173185,12 +173185,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -173201,12 +173201,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -173219,12 +173219,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -173235,12 +173235,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -173253,12 +173253,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -173269,12 +173269,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -173287,12 +173287,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -173303,12 +173303,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -173321,12 +173321,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -173337,12 +173337,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -173355,12 +173355,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -173371,12 +173371,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -173389,12 +173389,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -173405,12 +173405,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -173423,12 +173423,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -173439,12 +173439,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -173457,12 +173457,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -173473,12 +173473,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -173491,12 +173491,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -173507,12 +173507,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -173525,12 +173525,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -173541,12 +173541,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -173559,12 +173559,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -173575,12 +173575,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -173593,12 +173593,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -173609,12 +173609,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -173627,12 +173627,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 16
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -173643,12 +173643,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 16, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -173661,12 +173661,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -173677,12 +173677,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 36, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -173695,12 +173695,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -173711,12 +173711,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 36, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -173729,12 +173729,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = b6
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -173745,12 +173745,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = b6, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -173763,12 +173763,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = b6
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -173779,12 +173779,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = b6, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -173797,12 +173797,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -173813,12 +173813,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -173831,12 +173831,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -173847,12 +173847,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -173865,12 +173865,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -173881,12 +173881,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -173899,12 +173899,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -173915,12 +173915,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -173933,12 +173933,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -173949,12 +173949,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -173967,12 +173967,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -173983,12 +173983,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -174001,12 +174001,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -174017,12 +174017,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -174035,12 +174035,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -174051,12 +174051,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -174069,12 +174069,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -174085,12 +174085,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -174103,12 +174103,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -174119,12 +174119,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -174137,12 +174137,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 86
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -174153,12 +174153,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -174171,12 +174171,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -174187,12 +174187,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -174205,12 +174205,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -174221,12 +174221,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -174239,12 +174239,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -174255,12 +174255,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -174273,12 +174273,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -174289,12 +174289,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -174307,12 +174307,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -174323,12 +174323,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -174341,12 +174341,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -174357,12 +174357,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -174375,12 +174375,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -174391,12 +174391,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -174409,12 +174409,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -174425,12 +174425,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -174443,12 +174443,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -174459,12 +174459,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -174477,12 +174477,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -174493,12 +174493,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -174511,12 +174511,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -174527,12 +174527,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -174545,12 +174545,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -174561,12 +174561,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -174579,12 +174579,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -174595,12 +174595,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -174613,12 +174613,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -174629,12 +174629,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -174647,12 +174647,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -174663,12 +174663,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -174681,12 +174681,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -174697,12 +174697,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -174715,12 +174715,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -174731,12 +174731,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -174749,12 +174749,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -174765,12 +174765,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -174783,12 +174783,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -174799,12 +174799,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -174817,12 +174817,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -174833,12 +174833,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -174851,12 +174851,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -174867,12 +174867,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -174885,12 +174885,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -174901,12 +174901,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -174919,12 +174919,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -174935,12 +174935,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -174953,12 +174953,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -174969,12 +174969,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -174987,12 +174987,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -175003,12 +175003,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -175021,12 +175021,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -175037,12 +175037,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -175055,12 +175055,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -175071,12 +175071,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -175089,12 +175089,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -175105,12 +175105,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -175123,12 +175123,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -175139,12 +175139,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -175157,12 +175157,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -175173,12 +175173,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 70, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -175191,12 +175191,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -175207,12 +175207,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 70, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -175225,12 +175225,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -175241,12 +175241,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 36, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -175259,12 +175259,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 76
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -175275,12 +175275,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 76, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -175293,12 +175293,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 76
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -175309,12 +175309,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 76, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -175327,12 +175327,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 76
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -175343,12 +175343,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 76, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -175361,12 +175361,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -175377,12 +175377,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -175395,12 +175395,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -175411,12 +175411,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -175429,12 +175429,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -175445,12 +175445,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -175463,12 +175463,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -175479,12 +175479,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -175497,12 +175497,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -175513,12 +175513,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -175531,12 +175531,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -175547,12 +175547,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -175565,12 +175565,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -175581,12 +175581,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -175599,12 +175599,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -175615,12 +175615,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -175633,12 +175633,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -175649,12 +175649,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -175667,12 +175667,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -175683,12 +175683,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -175701,12 +175701,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -175717,12 +175717,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -175735,12 +175735,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -175751,12 +175751,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -175769,12 +175769,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -175785,12 +175785,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -175803,12 +175803,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -175819,12 +175819,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -175837,12 +175837,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -175853,12 +175853,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -175871,12 +175871,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -175887,12 +175887,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -175905,12 +175905,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -175921,12 +175921,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -175939,12 +175939,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -175955,12 +175955,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -175973,12 +175973,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -175989,12 +175989,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -176007,12 +176007,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -176023,12 +176023,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -176041,12 +176041,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -176057,12 +176057,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -176075,12 +176075,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -176091,12 +176091,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -176109,12 +176109,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -176125,12 +176125,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -176143,12 +176143,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -176159,12 +176159,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -176177,12 +176177,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -176193,12 +176193,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -176211,12 +176211,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -176227,12 +176227,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -176245,12 +176245,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -176261,12 +176261,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -176279,12 +176279,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -176295,12 +176295,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -176313,12 +176313,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -176329,12 +176329,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -176347,12 +176347,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -176363,12 +176363,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -176381,12 +176381,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -176397,12 +176397,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -176415,12 +176415,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -176431,12 +176431,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -176449,12 +176449,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -176465,12 +176465,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -176483,12 +176483,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -176499,12 +176499,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -176517,12 +176517,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -176533,12 +176533,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -176551,12 +176551,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -176567,12 +176567,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -176585,12 +176585,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -176601,12 +176601,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -176619,12 +176619,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -176635,12 +176635,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -176653,12 +176653,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -176669,12 +176669,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -176687,12 +176687,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -176703,12 +176703,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -176721,12 +176721,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -176737,12 +176737,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 70, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -176755,12 +176755,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -176771,12 +176771,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -176789,12 +176789,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -176805,12 +176805,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -176823,12 +176823,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 76
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -176839,12 +176839,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 76, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -176857,12 +176857,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = f6
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -176873,12 +176873,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f6, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -176891,12 +176891,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = f6
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -176907,12 +176907,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f6, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -176925,12 +176925,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -176941,12 +176941,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -176959,12 +176959,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -176975,12 +176975,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -176993,12 +176993,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -177009,12 +177009,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -177027,12 +177027,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -177043,12 +177043,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -177061,12 +177061,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -177077,12 +177077,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -177095,12 +177095,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -177111,12 +177111,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -177129,12 +177129,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -177145,12 +177145,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -177163,12 +177163,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -177179,12 +177179,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -177197,12 +177197,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -177213,12 +177213,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -177231,12 +177231,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -177247,12 +177247,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -177265,12 +177265,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -177281,12 +177281,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -177299,12 +177299,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -177315,12 +177315,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -177333,12 +177333,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -177349,12 +177349,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -177367,12 +177367,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -177383,12 +177383,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -177401,12 +177401,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -177417,12 +177417,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -177435,12 +177435,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -177451,12 +177451,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -177469,12 +177469,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -177485,12 +177485,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -177503,12 +177503,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -177519,12 +177519,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -177537,12 +177537,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -177553,12 +177553,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -177571,12 +177571,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -177587,12 +177587,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -177605,12 +177605,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -177621,12 +177621,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -177639,12 +177639,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -177655,12 +177655,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -177673,12 +177673,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -177689,12 +177689,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -177707,12 +177707,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -177723,12 +177723,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -177741,12 +177741,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -177757,12 +177757,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -177775,12 +177775,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -177791,12 +177791,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -177809,12 +177809,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -177825,12 +177825,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -177843,12 +177843,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -177859,12 +177859,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -177877,12 +177877,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -177893,12 +177893,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -177911,12 +177911,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -177927,12 +177927,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -177945,12 +177945,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -177961,12 +177961,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -177979,12 +177979,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -177995,12 +177995,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -178013,12 +178013,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -178029,12 +178029,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -178047,12 +178047,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -178063,12 +178063,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -178081,12 +178081,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -178097,12 +178097,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -178115,12 +178115,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -178131,12 +178131,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -178149,12 +178149,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -178165,12 +178165,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -178183,12 +178183,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -178199,12 +178199,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -178217,12 +178217,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -178233,12 +178233,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -178251,12 +178251,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -178267,12 +178267,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -178285,12 +178285,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -178301,12 +178301,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -178319,12 +178319,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -178335,12 +178335,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -178353,12 +178353,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -178369,12 +178369,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -178387,12 +178387,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -178403,12 +178403,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -178421,12 +178421,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -178437,12 +178437,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -178455,12 +178455,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -178471,12 +178471,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -178489,12 +178489,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -178505,12 +178505,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -178523,12 +178523,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -178539,12 +178539,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -178557,12 +178557,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -178573,12 +178573,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -178591,12 +178591,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -178607,12 +178607,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -178625,12 +178625,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -178641,12 +178641,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -178659,12 +178659,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -178675,12 +178675,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -178693,12 +178693,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -178709,12 +178709,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -178727,12 +178727,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -178743,12 +178743,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -178761,12 +178761,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -178777,12 +178777,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -178795,12 +178795,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -178811,12 +178811,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -178829,12 +178829,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -178845,12 +178845,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -178863,12 +178863,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -178879,12 +178879,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -178897,12 +178897,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -178913,12 +178913,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -178931,12 +178931,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -178947,12 +178947,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -178965,12 +178965,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -178981,12 +178981,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -178999,12 +178999,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -179015,12 +179015,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -179033,12 +179033,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -179049,12 +179049,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -179067,12 +179067,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -179083,12 +179083,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -179101,12 +179101,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -179117,12 +179117,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -179135,12 +179135,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -179151,12 +179151,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -179169,12 +179169,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -179185,12 +179185,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -179203,12 +179203,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -179219,12 +179219,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -179237,12 +179237,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -179253,12 +179253,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -179271,12 +179271,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -179287,12 +179287,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -179305,12 +179305,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -179321,12 +179321,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -179339,12 +179339,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -179355,12 +179355,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -179373,12 +179373,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -179389,12 +179389,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -179407,12 +179407,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -179423,12 +179423,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -179441,12 +179441,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -179457,12 +179457,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -179475,12 +179475,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -179491,12 +179491,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -179509,12 +179509,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -179525,12 +179525,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -179543,12 +179543,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -179559,12 +179559,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -179577,12 +179577,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -179593,12 +179593,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -179611,12 +179611,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -179627,12 +179627,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -179645,12 +179645,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -179661,12 +179661,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -179679,12 +179679,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -179695,12 +179695,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -179713,12 +179713,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -179729,12 +179729,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -179747,12 +179747,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -179763,12 +179763,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -179781,12 +179781,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -179797,12 +179797,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -179815,12 +179815,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -179831,12 +179831,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -179849,12 +179849,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -179865,12 +179865,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -179883,12 +179883,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -179899,12 +179899,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -179917,12 +179917,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 8e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -179933,12 +179933,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 8e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -179951,12 +179951,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 8e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -179967,12 +179967,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 8e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -179985,12 +179985,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 8e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -180001,12 +180001,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 8e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -180019,12 +180019,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 8e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -180035,12 +180035,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 8e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -180053,12 +180053,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -180069,12 +180069,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -180087,12 +180087,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -180103,12 +180103,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -180121,12 +180121,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -180137,12 +180137,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -180155,12 +180155,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -180171,12 +180171,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -180189,12 +180189,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -180205,12 +180205,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -180223,12 +180223,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -180239,12 +180239,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -180257,12 +180257,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -180273,12 +180273,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -180291,12 +180291,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -180307,12 +180307,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -180325,12 +180325,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -180341,12 +180341,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -180359,12 +180359,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -180375,12 +180375,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -180393,12 +180393,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -180409,12 +180409,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -180427,12 +180427,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -180443,12 +180443,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -180461,12 +180461,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -180477,12 +180477,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -180495,12 +180495,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -180511,12 +180511,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -180529,12 +180529,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -180545,12 +180545,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -180563,12 +180563,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -180579,12 +180579,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -180597,12 +180597,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -180613,12 +180613,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -180631,12 +180631,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -180647,12 +180647,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -180665,12 +180665,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -180681,12 +180681,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -180699,12 +180699,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -180715,12 +180715,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -180733,12 +180733,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -180749,12 +180749,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -180767,12 +180767,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -180783,12 +180783,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -180801,12 +180801,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -180817,12 +180817,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -180835,12 +180835,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -180851,12 +180851,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -180869,12 +180869,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -180885,12 +180885,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -180903,12 +180903,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -180919,12 +180919,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -180937,12 +180937,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -180953,12 +180953,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -180971,12 +180971,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -180987,12 +180987,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -181005,12 +181005,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -181021,12 +181021,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -181039,12 +181039,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -181055,12 +181055,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -181073,12 +181073,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -181089,12 +181089,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -181107,12 +181107,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -181123,12 +181123,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -181141,12 +181141,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -181157,12 +181157,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -181175,12 +181175,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -181191,12 +181191,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -181209,12 +181209,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -181225,12 +181225,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -181243,12 +181243,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -181259,12 +181259,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -181277,12 +181277,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -181293,12 +181293,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -181311,12 +181311,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -181327,12 +181327,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -181345,12 +181345,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -181361,12 +181361,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -181379,12 +181379,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -181395,12 +181395,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -181413,12 +181413,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -181429,12 +181429,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -181447,12 +181447,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -181463,12 +181463,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -181481,12 +181481,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -181497,12 +181497,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -181515,12 +181515,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 4e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -181531,12 +181531,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 4e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -181549,12 +181549,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 4e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -181565,12 +181565,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 4e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -181583,12 +181583,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 4e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -181599,12 +181599,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 4e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -181617,12 +181617,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -181633,12 +181633,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -181651,12 +181651,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -181667,12 +181667,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -181685,12 +181685,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -181701,12 +181701,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -181719,12 +181719,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -181735,12 +181735,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -181753,12 +181753,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -181769,12 +181769,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -181787,12 +181787,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -181803,12 +181803,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -181821,12 +181821,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -181837,12 +181837,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -181855,12 +181855,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -181871,12 +181871,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -181889,12 +181889,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -181905,12 +181905,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -181923,12 +181923,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -181939,12 +181939,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -181957,12 +181957,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -181973,12 +181973,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -181991,12 +181991,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -182007,12 +182007,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -182025,12 +182025,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -182041,12 +182041,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -182059,12 +182059,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -182075,12 +182075,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -182093,12 +182093,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -182109,12 +182109,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -182127,12 +182127,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -182143,12 +182143,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -182161,12 +182161,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -182177,12 +182177,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -182195,12 +182195,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -182211,12 +182211,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -182229,12 +182229,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -182245,12 +182245,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -182263,12 +182263,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -182279,12 +182279,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -182297,12 +182297,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -182313,12 +182313,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -182331,12 +182331,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 46
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -182347,12 +182347,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -182365,12 +182365,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -182381,12 +182381,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -182399,12 +182399,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -182415,12 +182415,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -182433,12 +182433,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -182449,12 +182449,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -182467,12 +182467,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -182483,12 +182483,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -182501,12 +182501,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -182517,12 +182517,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -182535,12 +182535,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -182551,12 +182551,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -182569,12 +182569,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -182585,12 +182585,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -182603,12 +182603,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -182619,12 +182619,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -182637,12 +182637,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -182653,12 +182653,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -182671,12 +182671,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -182687,12 +182687,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -182705,12 +182705,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -182721,12 +182721,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -182739,12 +182739,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -182755,12 +182755,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -182773,12 +182773,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -182789,12 +182789,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -182807,12 +182807,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -182823,12 +182823,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -182841,12 +182841,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -182857,12 +182857,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -182875,12 +182875,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -182891,12 +182891,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -182909,12 +182909,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -182925,12 +182925,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -182943,12 +182943,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -182959,12 +182959,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -182977,12 +182977,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -182993,12 +182993,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -183011,12 +183011,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -183027,12 +183027,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -183045,12 +183045,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = c6
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -183061,12 +183061,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c6, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -183079,12 +183079,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = ce
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -183095,12 +183095,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = ce, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -183113,12 +183113,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = ce
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -183129,12 +183129,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = ce, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -183147,12 +183147,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = ce
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -183163,12 +183163,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = ce, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -183181,12 +183181,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -183197,12 +183197,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -183215,12 +183215,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -183231,12 +183231,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -183249,12 +183249,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -183265,12 +183265,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -183283,12 +183283,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -183299,12 +183299,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -183317,12 +183317,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -183333,12 +183333,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -183351,12 +183351,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -183367,12 +183367,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -183385,12 +183385,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -183401,12 +183401,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -183419,12 +183419,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -183435,12 +183435,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -183453,12 +183453,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -183469,12 +183469,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -183487,12 +183487,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -183503,12 +183503,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -183521,12 +183521,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -183537,12 +183537,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -183555,12 +183555,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -183571,12 +183571,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -183589,12 +183589,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -183605,12 +183605,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -183623,12 +183623,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -183639,12 +183639,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -183657,12 +183657,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -183673,12 +183673,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -183691,12 +183691,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -183707,12 +183707,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -183725,12 +183725,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -183741,12 +183741,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -183759,12 +183759,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -183775,12 +183775,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -183793,12 +183793,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -183809,12 +183809,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -183827,12 +183827,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -183843,12 +183843,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -183861,12 +183861,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -183877,12 +183877,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -183895,12 +183895,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 46
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -183911,12 +183911,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -183929,12 +183929,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -183945,12 +183945,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -183963,12 +183963,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -183979,12 +183979,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -183997,12 +183997,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -184013,12 +184013,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -184031,12 +184031,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -184047,12 +184047,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -184065,12 +184065,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -184081,12 +184081,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -184099,12 +184099,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -184115,12 +184115,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -184133,12 +184133,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -184149,12 +184149,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -184167,12 +184167,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -184183,12 +184183,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -184201,12 +184201,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -184217,12 +184217,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -184235,12 +184235,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -184251,12 +184251,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -184269,12 +184269,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -184285,12 +184285,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -184303,12 +184303,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -184319,12 +184319,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -184337,12 +184337,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -184353,12 +184353,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -184371,12 +184371,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -184387,12 +184387,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -184405,12 +184405,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -184421,12 +184421,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -184439,12 +184439,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -184455,12 +184455,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -184473,12 +184473,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -184489,12 +184489,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -184507,12 +184507,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -184523,12 +184523,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -184541,12 +184541,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -184557,12 +184557,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -184575,12 +184575,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -184591,12 +184591,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -184609,12 +184609,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 2e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -184625,12 +184625,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 2e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -184643,12 +184643,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 2e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -184659,12 +184659,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 2e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -184677,12 +184677,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 2e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -184693,12 +184693,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 2e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -184711,12 +184711,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 2e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -184727,12 +184727,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 2e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -184745,12 +184745,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -184761,12 +184761,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -184779,12 +184779,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -184795,12 +184795,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -184813,12 +184813,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -184829,12 +184829,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -184847,12 +184847,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -184863,12 +184863,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -184881,12 +184881,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -184897,12 +184897,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -184915,12 +184915,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -184931,12 +184931,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -184949,12 +184949,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -184965,12 +184965,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -184983,12 +184983,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -184999,12 +184999,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -185017,12 +185017,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -185033,12 +185033,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -185051,12 +185051,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -185067,12 +185067,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -185085,12 +185085,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -185101,12 +185101,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -185119,12 +185119,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -185135,12 +185135,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -185153,12 +185153,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -185169,12 +185169,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -185187,12 +185187,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -185203,12 +185203,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -185221,12 +185221,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -185237,12 +185237,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -185255,12 +185255,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -185271,12 +185271,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -185289,12 +185289,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -185305,12 +185305,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -185323,12 +185323,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -185339,12 +185339,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -185357,12 +185357,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -185373,12 +185373,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -185391,12 +185391,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -185407,12 +185407,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -185425,12 +185425,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -185441,12 +185441,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -185459,12 +185459,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -185475,12 +185475,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -185493,12 +185493,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -185509,12 +185509,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -185527,12 +185527,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -185543,12 +185543,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -185561,12 +185561,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -185577,12 +185577,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -185595,12 +185595,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -185611,12 +185611,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -185629,12 +185629,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -185645,12 +185645,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -185663,12 +185663,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -185679,12 +185679,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -185697,12 +185697,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -185713,12 +185713,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -185731,12 +185731,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -185747,12 +185747,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -185765,12 +185765,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -185781,12 +185781,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -185799,12 +185799,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -185815,12 +185815,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -185833,12 +185833,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -185849,12 +185849,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -185867,12 +185867,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -185883,12 +185883,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -185901,12 +185901,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -185917,12 +185917,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -185935,12 +185935,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -185951,12 +185951,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -185969,12 +185969,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -185985,12 +185985,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -186003,12 +186003,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -186019,12 +186019,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -186037,12 +186037,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -186053,12 +186053,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -186071,12 +186071,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -186087,12 +186087,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -186105,12 +186105,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -186121,12 +186121,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -186139,12 +186139,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -186155,12 +186155,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -186173,12 +186173,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 2e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -186189,12 +186189,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 2e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -186207,12 +186207,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 2e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -186223,12 +186223,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 2e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -186241,12 +186241,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = ae
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -186257,12 +186257,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = ae, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -186275,12 +186275,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = ae
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -186291,12 +186291,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = ae, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -186309,12 +186309,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -186325,12 +186325,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -186343,12 +186343,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -186359,12 +186359,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -186377,12 +186377,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -186393,12 +186393,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -186411,12 +186411,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -186427,12 +186427,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -186445,12 +186445,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -186461,12 +186461,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -186479,12 +186479,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -186495,12 +186495,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -186513,12 +186513,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -186529,12 +186529,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -186547,12 +186547,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -186563,12 +186563,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -186581,12 +186581,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -186597,12 +186597,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -186615,12 +186615,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -186631,12 +186631,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -186649,12 +186649,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -186665,12 +186665,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -186683,12 +186683,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -186699,12 +186699,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -186717,12 +186717,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -186733,12 +186733,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -186751,12 +186751,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -186767,12 +186767,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -186785,12 +186785,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -186801,12 +186801,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -186819,12 +186819,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -186835,12 +186835,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -186853,12 +186853,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -186869,12 +186869,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -186887,12 +186887,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -186903,12 +186903,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -186921,12 +186921,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -186937,12 +186937,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -186955,12 +186955,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -186971,12 +186971,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -186989,12 +186989,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -187005,12 +187005,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -187023,12 +187023,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -187039,12 +187039,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -187057,12 +187057,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -187073,12 +187073,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -187091,12 +187091,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -187107,12 +187107,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -187125,12 +187125,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -187141,12 +187141,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -187159,12 +187159,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -187175,12 +187175,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -187193,12 +187193,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -187209,12 +187209,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -187227,12 +187227,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -187243,12 +187243,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -187261,12 +187261,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -187277,12 +187277,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -187295,12 +187295,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -187311,12 +187311,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -187329,12 +187329,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -187345,12 +187345,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -187363,12 +187363,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -187379,12 +187379,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -187397,12 +187397,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -187413,12 +187413,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -187431,12 +187431,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -187447,12 +187447,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -187465,12 +187465,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -187481,12 +187481,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -187499,12 +187499,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -187515,12 +187515,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -187533,12 +187533,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -187549,12 +187549,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -187567,12 +187567,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -187583,12 +187583,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -187601,12 +187601,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -187617,12 +187617,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -187635,12 +187635,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -187651,12 +187651,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -187669,12 +187669,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -187685,12 +187685,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -187703,12 +187703,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -187719,12 +187719,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -187737,12 +187737,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 2e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -187753,12 +187753,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 2e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -187771,12 +187771,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 6e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -187787,12 +187787,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 6e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -187805,12 +187805,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 6e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -187821,12 +187821,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 6e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -187839,12 +187839,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 6e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -187855,12 +187855,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 6e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -187873,12 +187873,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -187889,12 +187889,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -187907,12 +187907,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -187923,12 +187923,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -187941,12 +187941,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -187957,12 +187957,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -187975,12 +187975,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -187991,12 +187991,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -188009,12 +188009,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -188025,12 +188025,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -188043,12 +188043,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -188059,12 +188059,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -188077,12 +188077,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -188093,12 +188093,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -188111,12 +188111,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -188127,12 +188127,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -188145,12 +188145,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -188161,12 +188161,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -188179,12 +188179,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -188195,12 +188195,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -188213,12 +188213,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -188229,12 +188229,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -188247,12 +188247,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -188263,12 +188263,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -188281,12 +188281,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -188297,12 +188297,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -188315,12 +188315,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -188331,12 +188331,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -188349,12 +188349,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -188365,12 +188365,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -188383,12 +188383,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -188399,12 +188399,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -188417,12 +188417,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -188433,12 +188433,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -188451,12 +188451,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -188467,12 +188467,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -188485,12 +188485,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -188501,12 +188501,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -188519,12 +188519,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -188535,12 +188535,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -188553,12 +188553,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -188569,12 +188569,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -188587,12 +188587,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -188603,12 +188603,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -188621,12 +188621,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -188637,12 +188637,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -188655,12 +188655,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -188671,12 +188671,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -188689,12 +188689,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -188705,12 +188705,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -188723,12 +188723,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -188739,12 +188739,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -188757,12 +188757,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -188773,12 +188773,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -188791,12 +188791,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -188807,12 +188807,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -188825,12 +188825,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -188841,12 +188841,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -188859,12 +188859,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -188875,12 +188875,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -188893,12 +188893,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -188909,12 +188909,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -188927,12 +188927,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -188943,12 +188943,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -188961,12 +188961,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -188977,12 +188977,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -188995,12 +188995,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -189011,12 +189011,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -189029,12 +189029,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -189045,12 +189045,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -189063,12 +189063,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -189079,12 +189079,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -189097,12 +189097,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -189113,12 +189113,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -189131,12 +189131,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -189147,12 +189147,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -189165,12 +189165,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -189181,12 +189181,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -189199,12 +189199,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -189215,12 +189215,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -189233,12 +189233,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -189249,12 +189249,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -189267,12 +189267,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -189283,12 +189283,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -189301,12 +189301,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 2e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -189317,12 +189317,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 2e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -189335,12 +189335,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 6e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -189351,12 +189351,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 6e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -189369,12 +189369,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = ee
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -189385,12 +189385,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = ee, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -189403,12 +189403,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = ee
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -189419,12 +189419,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = ee, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -189437,12 +189437,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -189453,12 +189453,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -189471,12 +189471,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -189487,12 +189487,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -189505,12 +189505,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -189521,12 +189521,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -189539,12 +189539,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -189555,12 +189555,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -189573,12 +189573,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -189589,12 +189589,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -189607,12 +189607,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -189623,12 +189623,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -189641,12 +189641,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -189657,12 +189657,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -189675,12 +189675,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -189691,12 +189691,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -189709,12 +189709,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -189725,12 +189725,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -189743,12 +189743,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -189759,12 +189759,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -189777,12 +189777,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -189793,12 +189793,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -189811,12 +189811,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -189827,12 +189827,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -189845,12 +189845,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -189861,12 +189861,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -189879,12 +189879,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -189895,12 +189895,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -189913,12 +189913,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -189929,12 +189929,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -189947,12 +189947,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -189963,12 +189963,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -189981,12 +189981,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -189997,12 +189997,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -190015,12 +190015,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -190031,12 +190031,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -190049,12 +190049,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -190065,12 +190065,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -190083,12 +190083,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -190099,12 +190099,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -190117,12 +190117,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -190133,12 +190133,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -190151,12 +190151,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -190167,12 +190167,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -190185,12 +190185,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -190201,12 +190201,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -190219,12 +190219,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -190235,12 +190235,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -190253,12 +190253,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -190269,12 +190269,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -190287,12 +190287,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -190303,12 +190303,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -190321,12 +190321,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -190337,12 +190337,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -190355,12 +190355,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -190371,12 +190371,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -190389,12 +190389,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -190405,12 +190405,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -190423,12 +190423,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -190439,12 +190439,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -190457,12 +190457,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -190473,12 +190473,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -190491,12 +190491,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -190507,12 +190507,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -190525,12 +190525,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -190541,12 +190541,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -190559,12 +190559,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -190575,12 +190575,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -190593,12 +190593,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -190609,12 +190609,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -190627,12 +190627,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -190643,12 +190643,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -190661,12 +190661,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -190677,12 +190677,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -190695,12 +190695,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -190711,12 +190711,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -190729,12 +190729,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -190745,12 +190745,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -190763,12 +190763,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -190779,12 +190779,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -190797,12 +190797,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -190813,12 +190813,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -190831,12 +190831,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -190847,12 +190847,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -190865,12 +190865,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -190881,12 +190881,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -190899,12 +190899,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -190915,12 +190915,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -190933,12 +190933,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -190949,12 +190949,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -190967,12 +190967,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -190983,12 +190983,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -191001,12 +191001,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -191017,12 +191017,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -191035,12 +191035,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -191051,12 +191051,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -191069,12 +191069,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -191085,12 +191085,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -191103,12 +191103,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -191119,12 +191119,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -191137,12 +191137,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -191153,12 +191153,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -191171,12 +191171,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -191187,12 +191187,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -191205,12 +191205,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -191221,12 +191221,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -191239,12 +191239,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -191255,12 +191255,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -191273,12 +191273,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -191289,12 +191289,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -191307,12 +191307,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -191323,12 +191323,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -191341,12 +191341,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -191357,12 +191357,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -191375,12 +191375,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -191391,12 +191391,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -191409,12 +191409,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -191425,12 +191425,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -191443,12 +191443,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -191459,12 +191459,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -191477,12 +191477,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -191493,12 +191493,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -191511,12 +191511,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -191527,12 +191527,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -191545,12 +191545,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -191561,12 +191561,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -191579,12 +191579,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -191595,12 +191595,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -191613,12 +191613,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -191629,12 +191629,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -191647,12 +191647,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -191663,12 +191663,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -191681,12 +191681,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -191697,12 +191697,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -191715,12 +191715,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -191731,12 +191731,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -191749,12 +191749,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -191765,12 +191765,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -191783,12 +191783,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -191799,12 +191799,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -191817,12 +191817,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -191833,12 +191833,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -191851,12 +191851,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -191867,12 +191867,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -191885,12 +191885,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -191901,12 +191901,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -191919,12 +191919,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -191935,12 +191935,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -191953,12 +191953,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -191969,12 +191969,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -191987,12 +191987,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -192003,12 +192003,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -192021,12 +192021,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -192037,12 +192037,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -192055,12 +192055,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -192071,12 +192071,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -192089,12 +192089,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -192105,12 +192105,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -192123,12 +192123,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -192139,12 +192139,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -192157,12 +192157,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -192173,12 +192173,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -192191,12 +192191,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -192207,12 +192207,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -192225,12 +192225,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -192241,12 +192241,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -192259,12 +192259,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -192275,12 +192275,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -192293,12 +192293,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -192309,12 +192309,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -192327,12 +192327,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -192343,12 +192343,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -192361,12 +192361,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -192377,12 +192377,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -192395,12 +192395,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -192411,12 +192411,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -192429,12 +192429,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -192445,12 +192445,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -192463,12 +192463,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 9e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -192479,12 +192479,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 9e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -192497,12 +192497,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 9e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -192513,12 +192513,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 9e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -192531,12 +192531,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 9e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -192547,12 +192547,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 9e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -192565,12 +192565,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -192581,12 +192581,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -192599,12 +192599,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -192615,12 +192615,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -192633,12 +192633,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -192649,12 +192649,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -192667,12 +192667,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -192683,12 +192683,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -192701,12 +192701,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -192717,12 +192717,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -192735,12 +192735,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -192751,12 +192751,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -192769,12 +192769,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -192785,12 +192785,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -192803,12 +192803,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -192819,12 +192819,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -192837,12 +192837,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -192853,12 +192853,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -192871,12 +192871,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -192887,12 +192887,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -192905,12 +192905,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -192921,12 +192921,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -192939,12 +192939,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -192955,12 +192955,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -192973,12 +192973,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -192989,12 +192989,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -193007,12 +193007,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -193023,12 +193023,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -193041,12 +193041,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -193057,12 +193057,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -193075,12 +193075,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -193091,12 +193091,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -193109,12 +193109,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -193125,12 +193125,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -193143,12 +193143,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -193159,12 +193159,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -193177,12 +193177,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -193193,12 +193193,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -193211,12 +193211,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -193227,12 +193227,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -193245,12 +193245,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -193261,12 +193261,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -193279,12 +193279,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -193295,12 +193295,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -193313,12 +193313,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -193329,12 +193329,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -193347,12 +193347,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -193363,12 +193363,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -193381,12 +193381,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -193397,12 +193397,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -193415,12 +193415,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -193431,12 +193431,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -193449,12 +193449,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -193465,12 +193465,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -193483,12 +193483,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -193499,12 +193499,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -193517,12 +193517,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -193533,12 +193533,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -193551,12 +193551,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -193567,12 +193567,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -193585,12 +193585,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -193601,12 +193601,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -193619,12 +193619,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -193635,12 +193635,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -193653,12 +193653,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -193669,12 +193669,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -193687,12 +193687,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -193703,12 +193703,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -193721,12 +193721,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -193737,12 +193737,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -193755,12 +193755,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -193771,12 +193771,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -193789,12 +193789,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -193805,12 +193805,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -193823,12 +193823,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -193839,12 +193839,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -193857,12 +193857,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -193873,12 +193873,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -193891,12 +193891,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -193907,12 +193907,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -193925,12 +193925,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -193941,12 +193941,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -193959,12 +193959,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -193975,12 +193975,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -193993,12 +193993,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -194009,12 +194009,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -194027,12 +194027,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 5e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -194043,12 +194043,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 5e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -194061,12 +194061,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 5e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -194077,12 +194077,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 5e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -194095,12 +194095,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 5e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -194111,12 +194111,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 5e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -194129,12 +194129,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -194145,12 +194145,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -194163,12 +194163,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -194179,12 +194179,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -194197,12 +194197,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -194213,12 +194213,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -194231,12 +194231,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -194247,12 +194247,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -194265,12 +194265,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -194281,12 +194281,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -194299,12 +194299,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -194315,12 +194315,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -194333,12 +194333,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -194349,12 +194349,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -194367,12 +194367,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -194383,12 +194383,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -194401,12 +194401,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -194417,12 +194417,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -194435,12 +194435,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -194451,12 +194451,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -194469,12 +194469,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -194485,12 +194485,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -194503,12 +194503,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -194519,12 +194519,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -194537,12 +194537,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -194553,12 +194553,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -194571,12 +194571,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -194587,12 +194587,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -194605,12 +194605,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -194621,12 +194621,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -194639,12 +194639,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -194655,12 +194655,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -194673,12 +194673,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -194689,12 +194689,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -194707,12 +194707,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -194723,12 +194723,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -194741,12 +194741,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -194757,12 +194757,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -194775,12 +194775,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -194791,12 +194791,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -194809,12 +194809,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -194825,12 +194825,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -194843,12 +194843,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -194859,12 +194859,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -194877,12 +194877,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -194893,12 +194893,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -194911,12 +194911,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -194927,12 +194927,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -194945,12 +194945,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -194961,12 +194961,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -194979,12 +194979,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -194995,12 +194995,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -195013,12 +195013,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -195029,12 +195029,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -195047,12 +195047,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -195063,12 +195063,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -195081,12 +195081,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -195097,12 +195097,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -195115,12 +195115,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -195131,12 +195131,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -195149,12 +195149,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -195165,12 +195165,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -195183,12 +195183,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -195199,12 +195199,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -195217,12 +195217,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -195233,12 +195233,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -195251,12 +195251,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -195267,12 +195267,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -195285,12 +195285,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -195301,12 +195301,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -195319,12 +195319,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -195335,12 +195335,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -195353,12 +195353,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -195369,12 +195369,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -195387,12 +195387,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -195403,12 +195403,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -195421,12 +195421,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -195437,12 +195437,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -195455,12 +195455,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -195471,12 +195471,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -195489,12 +195489,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -195505,12 +195505,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -195523,12 +195523,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -195539,12 +195539,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -195557,12 +195557,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -195573,12 +195573,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -195591,12 +195591,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 5e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -195607,12 +195607,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 5e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -195625,12 +195625,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = de
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -195641,12 +195641,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = de, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -195659,12 +195659,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = de
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -195675,12 +195675,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = de, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -195693,12 +195693,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -195709,12 +195709,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -195727,12 +195727,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -195743,12 +195743,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -195761,12 +195761,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -195777,12 +195777,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -195795,12 +195795,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -195811,12 +195811,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -195829,12 +195829,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -195845,12 +195845,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -195863,12 +195863,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -195879,12 +195879,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -195897,12 +195897,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -195913,12 +195913,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -195931,12 +195931,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -195947,12 +195947,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -195965,12 +195965,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -195981,12 +195981,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -195999,12 +195999,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -196015,12 +196015,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -196033,12 +196033,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -196049,12 +196049,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -196067,12 +196067,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -196083,12 +196083,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -196101,12 +196101,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -196117,12 +196117,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -196135,12 +196135,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -196151,12 +196151,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -196169,12 +196169,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -196185,12 +196185,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -196203,12 +196203,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -196219,12 +196219,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -196237,12 +196237,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -196253,12 +196253,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -196271,12 +196271,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -196287,12 +196287,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -196305,12 +196305,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -196321,12 +196321,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -196339,12 +196339,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -196355,12 +196355,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -196373,12 +196373,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -196389,12 +196389,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -196407,12 +196407,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -196423,12 +196423,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -196441,12 +196441,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -196457,12 +196457,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -196475,12 +196475,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -196491,12 +196491,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -196509,12 +196509,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -196525,12 +196525,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -196543,12 +196543,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -196559,12 +196559,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -196577,12 +196577,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -196593,12 +196593,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -196611,12 +196611,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -196627,12 +196627,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -196645,12 +196645,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -196661,12 +196661,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -196679,12 +196679,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -196695,12 +196695,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -196713,12 +196713,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -196729,12 +196729,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -196747,12 +196747,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -196763,12 +196763,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -196781,12 +196781,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -196797,12 +196797,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -196815,12 +196815,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -196831,12 +196831,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -196849,12 +196849,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -196865,12 +196865,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -196883,12 +196883,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -196899,12 +196899,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -196917,12 +196917,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -196933,12 +196933,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -196951,12 +196951,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -196967,12 +196967,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -196985,12 +196985,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -197001,12 +197001,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -197019,12 +197019,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -197035,12 +197035,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -197053,12 +197053,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -197069,12 +197069,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -197087,12 +197087,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -197103,12 +197103,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -197121,12 +197121,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -197137,12 +197137,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -197155,12 +197155,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -197171,12 +197171,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -197189,12 +197189,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -197205,12 +197205,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -197223,12 +197223,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -197239,12 +197239,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -197257,12 +197257,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -197273,12 +197273,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -197291,12 +197291,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -197307,12 +197307,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -197325,12 +197325,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -197341,12 +197341,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -197359,12 +197359,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -197375,12 +197375,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -197393,12 +197393,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -197409,12 +197409,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -197427,12 +197427,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -197443,12 +197443,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -197461,12 +197461,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -197477,12 +197477,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -197495,12 +197495,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -197511,12 +197511,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -197529,12 +197529,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -197545,12 +197545,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -197563,12 +197563,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -197579,12 +197579,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -197597,12 +197597,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -197613,12 +197613,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -197631,12 +197631,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -197647,12 +197647,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -197665,12 +197665,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -197681,12 +197681,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -197699,12 +197699,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -197715,12 +197715,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -197733,12 +197733,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -197749,12 +197749,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -197767,12 +197767,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -197783,12 +197783,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -197801,12 +197801,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -197817,12 +197817,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -197835,12 +197835,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -197851,12 +197851,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -197869,12 +197869,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -197885,12 +197885,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -197903,12 +197903,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -197919,12 +197919,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -197937,12 +197937,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -197953,12 +197953,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -197971,12 +197971,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -197987,12 +197987,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -198005,12 +198005,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -198021,12 +198021,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -198039,12 +198039,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -198055,12 +198055,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -198073,12 +198073,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -198089,12 +198089,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -198107,12 +198107,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -198123,12 +198123,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -198141,12 +198141,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -198157,12 +198157,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -198175,12 +198175,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -198191,12 +198191,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -198209,12 +198209,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -198225,12 +198225,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -198243,12 +198243,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -198259,12 +198259,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -198277,12 +198277,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -198293,12 +198293,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -198311,12 +198311,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -198327,12 +198327,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -198345,12 +198345,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -198361,12 +198361,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -198379,12 +198379,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -198395,12 +198395,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -198413,12 +198413,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -198429,12 +198429,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -198447,12 +198447,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -198463,12 +198463,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -198481,12 +198481,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -198497,12 +198497,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -198515,12 +198515,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -198531,12 +198531,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -198549,12 +198549,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -198565,12 +198565,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -198583,12 +198583,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -198599,12 +198599,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -198617,12 +198617,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -198633,12 +198633,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -198651,12 +198651,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -198667,12 +198667,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -198685,12 +198685,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -198701,12 +198701,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -198719,12 +198719,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -198735,12 +198735,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -198753,12 +198753,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = be
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -198769,12 +198769,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = be, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -198787,12 +198787,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = be
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -198803,12 +198803,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = be, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -198821,12 +198821,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -198837,12 +198837,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -198855,12 +198855,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -198871,12 +198871,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -198889,12 +198889,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -198905,12 +198905,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -198923,12 +198923,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -198939,12 +198939,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -198957,12 +198957,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -198973,12 +198973,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -198991,12 +198991,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -199007,12 +199007,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -199025,12 +199025,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -199041,12 +199041,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -199059,12 +199059,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -199075,12 +199075,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -199093,12 +199093,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -199109,12 +199109,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -199127,12 +199127,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -199143,12 +199143,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -199161,12 +199161,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -199177,12 +199177,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -199195,12 +199195,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -199211,12 +199211,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -199229,12 +199229,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -199245,12 +199245,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -199263,12 +199263,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -199279,12 +199279,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -199297,12 +199297,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -199313,12 +199313,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -199331,12 +199331,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -199347,12 +199347,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -199365,12 +199365,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -199381,12 +199381,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -199399,12 +199399,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -199415,12 +199415,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -199433,12 +199433,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -199449,12 +199449,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -199467,12 +199467,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -199483,12 +199483,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -199501,12 +199501,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -199517,12 +199517,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -199535,12 +199535,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -199551,12 +199551,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -199569,12 +199569,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -199585,12 +199585,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -199603,12 +199603,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -199619,12 +199619,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -199637,12 +199637,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -199653,12 +199653,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -199671,12 +199671,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -199687,12 +199687,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -199705,12 +199705,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -199721,12 +199721,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -199739,12 +199739,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -199755,12 +199755,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -199773,12 +199773,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -199789,12 +199789,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -199807,12 +199807,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -199823,12 +199823,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -199841,12 +199841,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -199857,12 +199857,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -199875,12 +199875,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -199891,12 +199891,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -199909,12 +199909,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -199925,12 +199925,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -199943,12 +199943,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -199959,12 +199959,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -199977,12 +199977,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -199993,12 +199993,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -200011,12 +200011,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -200027,12 +200027,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -200045,12 +200045,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -200061,12 +200061,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -200079,12 +200079,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -200095,12 +200095,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -200113,12 +200113,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -200129,12 +200129,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -200147,12 +200147,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -200163,12 +200163,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -200181,12 +200181,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -200197,12 +200197,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -200215,12 +200215,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -200231,12 +200231,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -200249,12 +200249,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -200265,12 +200265,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -200283,12 +200283,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 7e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -200299,12 +200299,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 7e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -200317,12 +200317,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 7e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -200333,12 +200333,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 7e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -200351,12 +200351,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 7e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -200367,12 +200367,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 7e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -200385,12 +200385,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -200401,12 +200401,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -200419,12 +200419,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -200435,12 +200435,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -200453,12 +200453,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -200469,12 +200469,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -200487,12 +200487,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -200503,12 +200503,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -200521,12 +200521,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -200537,12 +200537,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -200555,12 +200555,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -200571,12 +200571,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -200589,12 +200589,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -200605,12 +200605,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -200623,12 +200623,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -200639,12 +200639,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -200657,12 +200657,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -200673,12 +200673,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -200691,12 +200691,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -200707,12 +200707,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -200725,12 +200725,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -200741,12 +200741,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -200759,12 +200759,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -200775,12 +200775,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -200793,12 +200793,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -200809,12 +200809,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -200827,12 +200827,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -200843,12 +200843,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -200861,12 +200861,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -200877,12 +200877,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -200895,12 +200895,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -200911,12 +200911,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -200929,12 +200929,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -200945,12 +200945,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -200963,12 +200963,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -200979,12 +200979,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -200997,12 +200997,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -201013,12 +201013,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -201031,12 +201031,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -201047,12 +201047,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -201065,12 +201065,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -201081,12 +201081,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -201099,12 +201099,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -201115,12 +201115,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -201133,12 +201133,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -201149,12 +201149,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -201167,12 +201167,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -201183,12 +201183,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -201201,12 +201201,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -201217,12 +201217,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -201235,12 +201235,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -201251,12 +201251,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -201269,12 +201269,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -201285,12 +201285,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -201303,12 +201303,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -201319,12 +201319,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -201337,12 +201337,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -201353,12 +201353,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -201371,12 +201371,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -201387,12 +201387,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -201405,12 +201405,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -201421,12 +201421,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -201439,12 +201439,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -201455,12 +201455,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -201473,12 +201473,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 06
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -201489,12 +201489,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -201507,12 +201507,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -201523,12 +201523,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -201541,12 +201541,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -201557,12 +201557,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -201575,12 +201575,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -201591,12 +201591,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -201609,12 +201609,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -201625,12 +201625,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -201643,12 +201643,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -201659,12 +201659,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -201677,12 +201677,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -201693,12 +201693,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -201711,12 +201711,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -201727,12 +201727,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -201745,12 +201745,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 0e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -201761,12 +201761,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -201779,12 +201779,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -201795,12 +201795,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -201813,12 +201813,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -201829,12 +201829,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -201847,12 +201847,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 7e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -201863,12 +201863,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 7e, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -201881,12 +201881,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = fe
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -201897,12 +201897,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = fe, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -201915,12 +201915,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = fe
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -201931,12 +201931,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = fe, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -201949,12 +201949,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -201965,12 +201965,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -201983,12 +201983,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -201999,12 +201999,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -202017,12 +202017,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -202033,12 +202033,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -202051,12 +202051,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -202067,12 +202067,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -202085,12 +202085,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -202101,12 +202101,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -202119,12 +202119,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -202135,12 +202135,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -202153,12 +202153,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -202169,12 +202169,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -202187,12 +202187,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -202203,12 +202203,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -202221,12 +202221,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -202237,12 +202237,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -202255,12 +202255,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -202271,12 +202271,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -202289,12 +202289,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -202305,12 +202305,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -202323,12 +202323,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -202339,12 +202339,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -202357,12 +202357,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -202373,12 +202373,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -202391,12 +202391,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -202407,12 +202407,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -202425,12 +202425,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -202441,12 +202441,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -202459,12 +202459,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -202475,12 +202475,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -202493,12 +202493,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -202509,12 +202509,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -202527,12 +202527,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -202543,12 +202543,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -202561,12 +202561,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -202577,12 +202577,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -202595,12 +202595,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -202611,12 +202611,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -202629,12 +202629,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -202645,12 +202645,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -202663,12 +202663,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -202679,12 +202679,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -202697,12 +202697,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -202713,12 +202713,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -202731,12 +202731,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -202747,12 +202747,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -202765,12 +202765,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -202781,12 +202781,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -202799,12 +202799,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -202815,12 +202815,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -202833,12 +202833,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7e
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -202849,12 +202849,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -202867,12 +202867,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -202883,12 +202883,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -202901,12 +202901,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -202917,12 +202917,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -202935,12 +202935,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -202951,12 +202951,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -202969,12 +202969,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -202985,12 +202985,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -203003,12 +203003,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -203019,12 +203019,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -203037,12 +203037,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -203053,12 +203053,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -203071,12 +203071,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -203087,12 +203087,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -203105,12 +203105,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -203121,12 +203121,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -203139,12 +203139,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -203155,12 +203155,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -203173,12 +203173,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -203189,12 +203189,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -203207,12 +203207,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -203223,12 +203223,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -203241,12 +203241,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -203257,12 +203257,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -203275,12 +203275,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -203291,12 +203291,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -203309,12 +203309,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -203325,12 +203325,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -203343,12 +203343,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -203359,12 +203359,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -203377,12 +203377,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -203393,12 +203393,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -203411,12 +203411,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -203427,12 +203427,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -203445,12 +203445,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -203461,12 +203461,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -203479,12 +203479,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -203495,12 +203495,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -203513,12 +203513,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -203529,12 +203529,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -203547,12 +203547,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -203563,12 +203563,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -203581,12 +203581,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -203597,12 +203597,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -203615,12 +203615,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -203631,12 +203631,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -203649,12 +203649,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -203665,12 +203665,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -203683,12 +203683,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -203699,12 +203699,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -203717,12 +203717,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -203733,12 +203733,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -203751,12 +203751,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -203767,12 +203767,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -203785,12 +203785,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -203801,12 +203801,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -203819,12 +203819,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -203835,12 +203835,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -203853,12 +203853,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -203869,12 +203869,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -203887,12 +203887,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -203903,12 +203903,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -203921,12 +203921,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -203937,12 +203937,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -203955,12 +203955,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -203971,12 +203971,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -203989,12 +203989,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -204005,12 +204005,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -204023,12 +204023,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -204039,12 +204039,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -204057,12 +204057,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -204073,12 +204073,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -204091,12 +204091,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -204107,12 +204107,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -204125,12 +204125,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -204141,12 +204141,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -204159,12 +204159,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -204175,12 +204175,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -204193,12 +204193,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -204209,12 +204209,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -204227,12 +204227,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -204243,12 +204243,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -204261,12 +204261,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -204277,12 +204277,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -204295,12 +204295,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -204311,12 +204311,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -204329,12 +204329,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -204345,12 +204345,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -204363,12 +204363,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -204379,12 +204379,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -204397,12 +204397,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -204413,12 +204413,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -204431,12 +204431,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -204447,12 +204447,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -204465,12 +204465,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -204481,12 +204481,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -204499,12 +204499,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -204515,12 +204515,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -204533,12 +204533,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -204549,12 +204549,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -204567,12 +204567,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -204583,12 +204583,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -204601,12 +204601,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -204617,12 +204617,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -204635,12 +204635,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -204651,12 +204651,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -204669,12 +204669,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -204685,12 +204685,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -204703,12 +204703,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -204719,12 +204719,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -204737,12 +204737,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -204753,12 +204753,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -204771,12 +204771,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -204787,12 +204787,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -204805,12 +204805,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -204821,12 +204821,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -204839,12 +204839,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -204855,12 +204855,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -204873,12 +204873,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -204889,12 +204889,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 81, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -204907,12 +204907,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -204923,12 +204923,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 81, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -204941,12 +204941,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -204957,12 +204957,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 81, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -204975,12 +204975,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -204991,12 +204991,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 81, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -205009,12 +205009,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -205025,12 +205025,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 81, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -205043,12 +205043,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -205059,12 +205059,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 81, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -205077,12 +205077,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -205093,12 +205093,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -205111,12 +205111,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -205127,12 +205127,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -205145,12 +205145,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -205161,12 +205161,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -205179,12 +205179,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -205195,12 +205195,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -205213,12 +205213,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -205229,12 +205229,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -205247,12 +205247,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -205263,12 +205263,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -205281,12 +205281,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -205297,12 +205297,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -205315,12 +205315,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -205331,12 +205331,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -205349,12 +205349,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -205365,12 +205365,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -205383,12 +205383,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -205399,12 +205399,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -205417,12 +205417,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -205433,12 +205433,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -205451,12 +205451,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -205467,12 +205467,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -205485,12 +205485,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -205501,12 +205501,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -205519,12 +205519,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -205535,12 +205535,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -205553,12 +205553,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -205569,12 +205569,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -205587,12 +205587,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -205603,12 +205603,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -205621,12 +205621,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -205637,12 +205637,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -205655,12 +205655,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -205671,12 +205671,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -205689,12 +205689,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -205705,12 +205705,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -205723,12 +205723,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -205739,12 +205739,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -205757,12 +205757,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -205773,12 +205773,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -205791,12 +205791,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -205807,12 +205807,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -205825,12 +205825,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -205841,12 +205841,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -205859,12 +205859,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -205875,12 +205875,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -205893,12 +205893,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -205909,12 +205909,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -205927,12 +205927,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -205943,12 +205943,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -205961,12 +205961,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -205977,12 +205977,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -205995,12 +205995,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -206011,12 +206011,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -206029,12 +206029,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -206045,12 +206045,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -206063,12 +206063,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -206079,12 +206079,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -206097,12 +206097,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -206113,12 +206113,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -206131,12 +206131,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -206147,12 +206147,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -206165,12 +206165,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -206181,12 +206181,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -206199,12 +206199,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -206215,12 +206215,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -206233,12 +206233,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -206249,12 +206249,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -206267,12 +206267,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -206283,12 +206283,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -206301,12 +206301,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -206317,12 +206317,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -206335,12 +206335,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -206351,12 +206351,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -206369,12 +206369,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -206385,12 +206385,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -206403,12 +206403,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -206419,12 +206419,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -206437,12 +206437,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -206453,12 +206453,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 41, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -206471,12 +206471,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -206487,12 +206487,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 41, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -206505,12 +206505,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -206521,12 +206521,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 41, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -206539,12 +206539,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -206555,12 +206555,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 41, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -206573,12 +206573,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -206589,12 +206589,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 41, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -206607,12 +206607,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -206623,12 +206623,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 41, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -206641,12 +206641,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -206657,12 +206657,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -206675,12 +206675,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -206691,12 +206691,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -206709,12 +206709,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -206725,12 +206725,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -206743,12 +206743,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -206759,12 +206759,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -206777,12 +206777,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -206793,12 +206793,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -206811,12 +206811,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -206827,12 +206827,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -206845,12 +206845,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -206861,12 +206861,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -206879,12 +206879,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -206895,12 +206895,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -206913,12 +206913,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -206929,12 +206929,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -206947,12 +206947,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -206963,12 +206963,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -206981,12 +206981,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -206997,12 +206997,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -207015,12 +207015,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -207031,12 +207031,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -207049,12 +207049,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -207065,12 +207065,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -207083,12 +207083,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -207099,12 +207099,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -207117,12 +207117,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -207133,12 +207133,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -207151,12 +207151,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -207167,12 +207167,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -207185,12 +207185,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -207201,12 +207201,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -207219,12 +207219,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -207235,12 +207235,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -207253,12 +207253,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -207269,12 +207269,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -207287,12 +207287,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -207303,12 +207303,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -207321,12 +207321,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -207337,12 +207337,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -207355,12 +207355,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -207371,12 +207371,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -207389,12 +207389,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -207405,12 +207405,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -207423,12 +207423,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -207439,12 +207439,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -207457,12 +207457,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -207473,12 +207473,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -207491,12 +207491,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -207507,12 +207507,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -207525,12 +207525,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -207541,12 +207541,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -207559,12 +207559,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -207575,12 +207575,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -207593,12 +207593,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -207609,12 +207609,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -207627,12 +207627,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -207643,12 +207643,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -207661,12 +207661,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -207677,12 +207677,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -207695,12 +207695,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -207711,12 +207711,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -207729,12 +207729,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -207745,12 +207745,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -207763,12 +207763,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -207779,12 +207779,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -207797,12 +207797,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -207813,12 +207813,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -207831,12 +207831,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -207847,12 +207847,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -207865,12 +207865,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -207881,12 +207881,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -207899,12 +207899,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -207915,12 +207915,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -207933,12 +207933,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -207949,12 +207949,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -207967,12 +207967,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -207983,12 +207983,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -208001,12 +208001,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -208017,12 +208017,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -208035,12 +208035,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -208051,12 +208051,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -208069,12 +208069,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -208085,12 +208085,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -208103,12 +208103,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -208119,12 +208119,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -208137,12 +208137,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -208153,12 +208153,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -208171,12 +208171,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -208187,12 +208187,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -208205,12 +208205,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -208221,12 +208221,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -208239,12 +208239,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -208255,12 +208255,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -208273,12 +208273,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -208289,12 +208289,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -208307,12 +208307,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -208323,12 +208323,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -208341,12 +208341,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -208357,12 +208357,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -208375,12 +208375,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -208391,12 +208391,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -208409,12 +208409,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -208425,12 +208425,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -208443,12 +208443,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -208459,12 +208459,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -208477,12 +208477,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -208493,12 +208493,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -208511,12 +208511,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -208527,12 +208527,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -208545,12 +208545,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -208561,12 +208561,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -208579,12 +208579,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -208595,12 +208595,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -208613,12 +208613,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -208629,12 +208629,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -208647,12 +208647,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -208663,12 +208663,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -208681,12 +208681,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -208697,12 +208697,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -208715,12 +208715,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -208731,12 +208731,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -208749,12 +208749,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -208765,12 +208765,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -208783,12 +208783,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -208799,12 +208799,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -208817,12 +208817,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -208833,12 +208833,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -208851,12 +208851,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -208867,12 +208867,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -208885,12 +208885,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -208901,12 +208901,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -208919,12 +208919,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -208935,12 +208935,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -208953,12 +208953,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -208969,12 +208969,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -208987,12 +208987,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -209003,12 +209003,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -209021,12 +209021,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -209037,12 +209037,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -209055,12 +209055,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -209071,12 +209071,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -209089,12 +209089,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -209105,12 +209105,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -209123,12 +209123,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -209139,12 +209139,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -209157,12 +209157,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -209173,12 +209173,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -209191,12 +209191,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -209207,12 +209207,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -209225,12 +209225,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -209241,12 +209241,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -209259,12 +209259,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -209275,12 +209275,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -209293,12 +209293,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -209309,12 +209309,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -209327,12 +209327,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -209343,12 +209343,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -209361,12 +209361,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -209377,12 +209377,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -209395,12 +209395,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -209411,12 +209411,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -209429,12 +209429,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -209445,12 +209445,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -209463,12 +209463,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -209479,12 +209479,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -209497,12 +209497,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -209513,12 +209513,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -209531,12 +209531,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -209547,12 +209547,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -209565,12 +209565,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -209581,12 +209581,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -209599,12 +209599,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -209615,12 +209615,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 21, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -209633,12 +209633,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -209649,12 +209649,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 21, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -209667,12 +209667,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -209683,12 +209683,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 21, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -209701,12 +209701,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -209717,12 +209717,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 21, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -209735,12 +209735,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -209751,12 +209751,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 21, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -209769,12 +209769,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -209785,12 +209785,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -209803,12 +209803,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -209819,12 +209819,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -209837,12 +209837,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -209853,12 +209853,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -209871,12 +209871,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -209887,12 +209887,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -209905,12 +209905,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -209921,12 +209921,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -209939,12 +209939,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -209955,12 +209955,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -209973,12 +209973,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -209989,12 +209989,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -210007,12 +210007,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -210023,12 +210023,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -210041,12 +210041,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -210057,12 +210057,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -210075,12 +210075,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -210091,12 +210091,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -210109,12 +210109,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -210125,12 +210125,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -210143,12 +210143,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -210159,12 +210159,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -210177,12 +210177,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -210193,12 +210193,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -210211,12 +210211,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -210227,12 +210227,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -210245,12 +210245,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -210261,12 +210261,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -210279,12 +210279,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -210295,12 +210295,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -210313,12 +210313,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -210329,12 +210329,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -210347,12 +210347,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -210363,12 +210363,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -210381,12 +210381,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -210397,12 +210397,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -210415,12 +210415,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -210431,12 +210431,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -210449,12 +210449,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -210465,12 +210465,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -210483,12 +210483,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -210499,12 +210499,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -210517,12 +210517,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -210533,12 +210533,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -210551,12 +210551,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -210567,12 +210567,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -210585,12 +210585,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -210601,12 +210601,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -210619,12 +210619,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -210635,12 +210635,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -210653,12 +210653,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -210669,12 +210669,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -210687,12 +210687,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -210703,12 +210703,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -210721,12 +210721,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -210737,12 +210737,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -210755,12 +210755,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -210771,12 +210771,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -210789,12 +210789,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -210805,12 +210805,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -210823,12 +210823,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -210839,12 +210839,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -210857,12 +210857,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -210873,12 +210873,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -210891,12 +210891,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -210907,12 +210907,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -210925,12 +210925,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -210941,12 +210941,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -210959,12 +210959,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -210975,12 +210975,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -210993,12 +210993,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -211009,12 +211009,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -211027,12 +211027,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -211043,12 +211043,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -211061,12 +211061,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -211077,12 +211077,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -211095,12 +211095,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -211111,12 +211111,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -211129,12 +211129,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -211145,12 +211145,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 81, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -211163,12 +211163,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = a1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -211179,12 +211179,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -211197,12 +211197,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = a1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -211213,12 +211213,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -211231,12 +211231,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = a1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -211247,12 +211247,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -211265,12 +211265,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = a1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -211281,12 +211281,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -211299,12 +211299,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = a1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -211315,12 +211315,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -211333,12 +211333,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -211349,12 +211349,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -211367,12 +211367,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -211383,12 +211383,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -211401,12 +211401,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -211417,12 +211417,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -211435,12 +211435,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -211451,12 +211451,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -211469,12 +211469,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -211485,12 +211485,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -211503,12 +211503,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -211519,12 +211519,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -211537,12 +211537,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -211553,12 +211553,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -211571,12 +211571,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -211587,12 +211587,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -211605,12 +211605,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -211621,12 +211621,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -211639,12 +211639,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -211655,12 +211655,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -211673,12 +211673,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -211689,12 +211689,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -211707,12 +211707,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -211723,12 +211723,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -211741,12 +211741,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -211757,12 +211757,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -211775,12 +211775,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -211791,12 +211791,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -211809,12 +211809,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -211825,12 +211825,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -211843,12 +211843,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -211859,12 +211859,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -211877,12 +211877,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -211893,12 +211893,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -211911,12 +211911,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -211927,12 +211927,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -211945,12 +211945,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -211961,12 +211961,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -211979,12 +211979,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -211995,12 +211995,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -212013,12 +212013,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -212029,12 +212029,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -212047,12 +212047,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -212063,12 +212063,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -212081,12 +212081,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -212097,12 +212097,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -212115,12 +212115,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -212131,12 +212131,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -212149,12 +212149,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -212165,12 +212165,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -212183,12 +212183,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -212199,12 +212199,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -212217,12 +212217,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -212233,12 +212233,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -212251,12 +212251,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -212267,12 +212267,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -212285,12 +212285,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -212301,12 +212301,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -212319,12 +212319,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -212335,12 +212335,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -212353,12 +212353,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -212369,12 +212369,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -212387,12 +212387,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -212403,12 +212403,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -212421,12 +212421,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -212437,12 +212437,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -212455,12 +212455,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -212471,12 +212471,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -212489,12 +212489,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -212505,12 +212505,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -212523,12 +212523,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -212539,12 +212539,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -212557,12 +212557,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -212573,12 +212573,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -212591,12 +212591,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -212607,12 +212607,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -212625,12 +212625,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -212641,12 +212641,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -212659,12 +212659,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -212675,12 +212675,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -212693,12 +212693,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -212709,12 +212709,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -212727,12 +212727,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 61
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -212743,12 +212743,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 61, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -212761,12 +212761,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 61
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -212777,12 +212777,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 61, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -212795,12 +212795,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 61
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -212811,12 +212811,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 61, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -212829,12 +212829,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 61
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -212845,12 +212845,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 61, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -212863,12 +212863,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 61
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -212879,12 +212879,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 61, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -212897,12 +212897,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -212913,12 +212913,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -212931,12 +212931,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -212947,12 +212947,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -212965,12 +212965,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -212981,12 +212981,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -212999,12 +212999,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -213015,12 +213015,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -213033,12 +213033,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -213049,12 +213049,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -213067,12 +213067,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -213083,12 +213083,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -213101,12 +213101,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -213117,12 +213117,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -213135,12 +213135,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -213151,12 +213151,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -213169,12 +213169,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -213185,12 +213185,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -213203,12 +213203,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -213219,12 +213219,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -213237,12 +213237,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -213253,12 +213253,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -213271,12 +213271,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -213287,12 +213287,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -213305,12 +213305,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -213321,12 +213321,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -213339,12 +213339,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -213355,12 +213355,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -213373,12 +213373,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -213389,12 +213389,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -213407,12 +213407,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -213423,12 +213423,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -213441,12 +213441,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -213457,12 +213457,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -213475,12 +213475,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -213491,12 +213491,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -213509,12 +213509,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -213525,12 +213525,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -213543,12 +213543,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -213559,12 +213559,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -213577,12 +213577,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -213593,12 +213593,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -213611,12 +213611,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -213627,12 +213627,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -213645,12 +213645,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -213661,12 +213661,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -213679,12 +213679,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -213695,12 +213695,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -213713,12 +213713,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -213729,12 +213729,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -213747,12 +213747,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -213763,12 +213763,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -213781,12 +213781,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -213797,12 +213797,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -213815,12 +213815,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -213831,12 +213831,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -213849,12 +213849,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -213865,12 +213865,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -213883,12 +213883,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -213899,12 +213899,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -213917,12 +213917,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -213933,12 +213933,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -213951,12 +213951,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -213967,12 +213967,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -213985,12 +213985,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -214001,12 +214001,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -214019,12 +214019,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -214035,12 +214035,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -214053,12 +214053,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -214069,12 +214069,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -214087,12 +214087,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -214103,12 +214103,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -214121,12 +214121,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -214137,12 +214137,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -214155,12 +214155,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -214171,12 +214171,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -214189,12 +214189,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -214205,12 +214205,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -214223,12 +214223,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -214239,12 +214239,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -214257,12 +214257,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -214273,12 +214273,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -214291,12 +214291,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = e1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -214307,12 +214307,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -214325,12 +214325,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = e1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -214341,12 +214341,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -214359,12 +214359,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = e1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -214375,12 +214375,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -214393,12 +214393,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = e1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -214409,12 +214409,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -214427,12 +214427,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = e1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -214443,12 +214443,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -214461,12 +214461,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -214477,12 +214477,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -214495,12 +214495,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -214511,12 +214511,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -214529,12 +214529,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -214545,12 +214545,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -214563,12 +214563,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -214579,12 +214579,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -214597,12 +214597,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -214613,12 +214613,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -214631,12 +214631,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = e1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -214647,12 +214647,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -214665,12 +214665,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = e1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -214681,12 +214681,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -214699,12 +214699,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = e1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -214715,12 +214715,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -214733,12 +214733,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = e1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -214749,12 +214749,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -214767,12 +214767,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = e1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -214783,12 +214783,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -214801,12 +214801,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = e1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -214817,12 +214817,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -214835,12 +214835,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -214851,12 +214851,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -214869,12 +214869,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -214885,12 +214885,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -214903,12 +214903,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -214919,12 +214919,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -214937,12 +214937,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -214953,12 +214953,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -214971,12 +214971,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -214987,12 +214987,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -215005,12 +215005,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -215021,12 +215021,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -215039,12 +215039,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -215055,12 +215055,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -215073,12 +215073,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -215089,12 +215089,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -215107,12 +215107,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -215123,12 +215123,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -215141,12 +215141,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -215157,12 +215157,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -215175,12 +215175,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -215191,12 +215191,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -215209,12 +215209,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -215225,12 +215225,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -215243,12 +215243,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -215259,12 +215259,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -215277,12 +215277,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -215293,12 +215293,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -215311,12 +215311,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -215327,12 +215327,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -215345,12 +215345,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -215361,12 +215361,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -215379,12 +215379,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -215395,12 +215395,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -215413,12 +215413,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -215429,12 +215429,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -215447,12 +215447,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -215463,12 +215463,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -215481,12 +215481,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -215497,12 +215497,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -215515,12 +215515,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -215531,12 +215531,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -215549,12 +215549,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -215565,12 +215565,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -215583,12 +215583,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -215599,12 +215599,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -215617,12 +215617,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -215633,12 +215633,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -215651,12 +215651,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -215667,12 +215667,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -215685,12 +215685,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -215701,12 +215701,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -215719,12 +215719,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -215735,12 +215735,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -215753,12 +215753,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -215769,12 +215769,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -215787,12 +215787,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -215803,12 +215803,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -215821,12 +215821,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -215837,12 +215837,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -215855,12 +215855,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -215871,12 +215871,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -215889,12 +215889,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 11
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -215905,12 +215905,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 11, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -215923,12 +215923,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 11
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -215939,12 +215939,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 11, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -215957,12 +215957,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 11
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -215973,12 +215973,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 11, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -215991,12 +215991,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 11
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -216007,12 +216007,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 11, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -216025,12 +216025,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -216041,12 +216041,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -216059,12 +216059,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -216075,12 +216075,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -216093,12 +216093,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -216109,12 +216109,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -216127,12 +216127,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -216143,12 +216143,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -216161,12 +216161,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -216177,12 +216177,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -216195,12 +216195,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -216211,12 +216211,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -216229,12 +216229,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -216245,12 +216245,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -216263,12 +216263,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -216279,12 +216279,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -216297,12 +216297,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -216313,12 +216313,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -216331,12 +216331,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -216347,12 +216347,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -216365,12 +216365,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -216381,12 +216381,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -216399,12 +216399,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -216415,12 +216415,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -216433,12 +216433,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -216449,12 +216449,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -216467,12 +216467,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -216483,12 +216483,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -216501,12 +216501,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -216517,12 +216517,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -216535,12 +216535,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -216551,12 +216551,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -216569,12 +216569,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -216585,12 +216585,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -216603,12 +216603,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -216619,12 +216619,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -216637,12 +216637,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -216653,12 +216653,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -216671,12 +216671,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -216687,12 +216687,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -216705,12 +216705,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -216721,12 +216721,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -216739,12 +216739,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -216755,12 +216755,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -216773,12 +216773,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -216789,12 +216789,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -216807,12 +216807,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -216823,12 +216823,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -216841,12 +216841,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -216857,12 +216857,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -216875,12 +216875,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -216891,12 +216891,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -216909,12 +216909,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -216925,12 +216925,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -216943,12 +216943,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -216959,12 +216959,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -216977,12 +216977,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -216993,12 +216993,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -217011,12 +217011,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -217027,12 +217027,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -217045,12 +217045,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -217061,12 +217061,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -217079,12 +217079,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -217095,12 +217095,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -217113,12 +217113,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -217129,12 +217129,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -217147,12 +217147,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -217163,12 +217163,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -217181,12 +217181,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -217197,12 +217197,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -217215,12 +217215,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -217231,12 +217231,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -217249,12 +217249,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -217265,12 +217265,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -217283,12 +217283,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -217299,12 +217299,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -217317,12 +217317,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -217333,12 +217333,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -217351,12 +217351,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -217367,12 +217367,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -217385,12 +217385,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -217401,12 +217401,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 81, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -217419,12 +217419,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -217435,12 +217435,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 81, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -217453,12 +217453,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 91
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -217469,12 +217469,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 91, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -217487,12 +217487,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 91
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -217503,12 +217503,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 91, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -217521,12 +217521,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 91
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -217537,12 +217537,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 91, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -217555,12 +217555,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 91
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -217571,12 +217571,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 91, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -217589,12 +217589,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -217605,12 +217605,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -217623,12 +217623,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -217639,12 +217639,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -217657,12 +217657,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -217673,12 +217673,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -217691,12 +217691,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -217707,12 +217707,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -217725,12 +217725,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -217741,12 +217741,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -217759,12 +217759,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -217775,12 +217775,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -217793,12 +217793,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -217809,12 +217809,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -217827,12 +217827,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -217843,12 +217843,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -217861,12 +217861,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -217877,12 +217877,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -217895,12 +217895,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -217911,12 +217911,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -217929,12 +217929,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -217945,12 +217945,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -217963,12 +217963,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 90
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -217979,12 +217979,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -217997,12 +217997,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 90
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -218013,12 +218013,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -218031,12 +218031,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 90
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -218047,12 +218047,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -218065,12 +218065,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 90
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -218081,12 +218081,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -218099,12 +218099,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 90
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -218115,12 +218115,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -218133,12 +218133,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 90
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -218149,12 +218149,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -218167,12 +218167,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 90
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -218183,12 +218183,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -218201,12 +218201,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 90
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -218217,12 +218217,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -218235,12 +218235,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 90
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -218251,12 +218251,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -218269,12 +218269,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 90
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -218285,12 +218285,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -218303,12 +218303,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 90
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -218319,12 +218319,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -218337,12 +218337,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 90
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -218353,12 +218353,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -218371,12 +218371,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 90
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -218387,12 +218387,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -218405,12 +218405,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 90
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -218421,12 +218421,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -218439,12 +218439,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 90
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -218455,12 +218455,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -218473,12 +218473,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 90
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -218489,12 +218489,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -218507,12 +218507,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -218523,12 +218523,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -218541,12 +218541,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -218557,12 +218557,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -218575,12 +218575,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -218591,12 +218591,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -218609,12 +218609,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -218625,12 +218625,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -218643,12 +218643,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -218659,12 +218659,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -218677,12 +218677,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -218693,12 +218693,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -218711,12 +218711,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -218727,12 +218727,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -218745,12 +218745,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -218761,12 +218761,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -218779,12 +218779,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -218795,12 +218795,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -218813,12 +218813,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -218829,12 +218829,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -218847,12 +218847,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -218863,12 +218863,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -218881,12 +218881,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -218897,12 +218897,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -218915,12 +218915,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -218931,12 +218931,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -218949,12 +218949,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -218965,12 +218965,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 50, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -218983,12 +218983,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -218999,12 +218999,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 50, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -219017,12 +219017,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 51
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -219033,12 +219033,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 51, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -219051,12 +219051,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 51
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -219067,12 +219067,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 51, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -219085,12 +219085,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 51
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -219101,12 +219101,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 51, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -219119,12 +219119,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 51
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -219135,12 +219135,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 51, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -219153,12 +219153,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -219169,12 +219169,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -219187,12 +219187,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -219203,12 +219203,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -219221,12 +219221,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -219237,12 +219237,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -219255,12 +219255,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -219271,12 +219271,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -219289,12 +219289,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -219305,12 +219305,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -219323,12 +219323,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -219339,12 +219339,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -219357,12 +219357,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -219373,12 +219373,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -219391,12 +219391,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -219407,12 +219407,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -219425,12 +219425,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -219441,12 +219441,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -219459,12 +219459,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -219475,12 +219475,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -219493,12 +219493,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -219509,12 +219509,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -219527,12 +219527,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -219543,12 +219543,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -219561,12 +219561,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -219577,12 +219577,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -219595,12 +219595,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -219611,12 +219611,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -219629,12 +219629,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -219645,12 +219645,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -219663,12 +219663,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -219679,12 +219679,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -219697,12 +219697,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -219713,12 +219713,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -219731,12 +219731,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -219747,12 +219747,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -219765,12 +219765,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -219781,12 +219781,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -219799,12 +219799,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -219815,12 +219815,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -219833,12 +219833,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -219849,12 +219849,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -219867,12 +219867,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -219883,12 +219883,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -219901,12 +219901,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -219917,12 +219917,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -219935,12 +219935,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -219951,12 +219951,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -219969,12 +219969,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -219985,12 +219985,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -220003,12 +220003,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -220019,12 +220019,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -220037,12 +220037,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 50
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -220053,12 +220053,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -220071,12 +220071,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -220087,12 +220087,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -220105,12 +220105,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -220121,12 +220121,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -220139,12 +220139,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -220155,12 +220155,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -220173,12 +220173,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -220189,12 +220189,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -220207,12 +220207,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -220223,12 +220223,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -220241,12 +220241,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -220257,12 +220257,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -220275,12 +220275,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -220291,12 +220291,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -220309,12 +220309,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -220325,12 +220325,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -220343,12 +220343,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -220359,12 +220359,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -220377,12 +220377,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -220393,12 +220393,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -220411,12 +220411,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -220427,12 +220427,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -220445,12 +220445,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -220461,12 +220461,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -220479,12 +220479,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -220495,12 +220495,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -220513,12 +220513,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -220529,12 +220529,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -220547,12 +220547,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -220563,12 +220563,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -220581,12 +220581,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = d1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -220597,12 +220597,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -220615,12 +220615,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = d1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -220631,12 +220631,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -220649,12 +220649,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = d1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -220665,12 +220665,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -220683,12 +220683,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = d1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -220699,12 +220699,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -220717,12 +220717,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -220733,12 +220733,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -220751,12 +220751,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -220767,12 +220767,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -220785,12 +220785,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -220801,12 +220801,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -220819,12 +220819,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -220835,12 +220835,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -220853,12 +220853,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -220869,12 +220869,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -220887,12 +220887,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -220903,12 +220903,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -220921,12 +220921,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -220937,12 +220937,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -220955,12 +220955,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -220971,12 +220971,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -220989,12 +220989,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -221005,12 +221005,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -221023,12 +221023,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -221039,12 +221039,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -221057,12 +221057,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -221073,12 +221073,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -221091,12 +221091,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -221107,12 +221107,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -221125,12 +221125,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -221141,12 +221141,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -221159,12 +221159,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -221175,12 +221175,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -221193,12 +221193,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -221209,12 +221209,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -221227,12 +221227,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -221243,12 +221243,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -221261,12 +221261,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -221277,12 +221277,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -221295,12 +221295,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -221311,12 +221311,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -221329,12 +221329,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -221345,12 +221345,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -221363,12 +221363,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -221379,12 +221379,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -221397,12 +221397,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -221413,12 +221413,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -221431,12 +221431,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -221447,12 +221447,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -221465,12 +221465,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -221481,12 +221481,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -221499,12 +221499,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -221515,12 +221515,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -221533,12 +221533,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -221549,12 +221549,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -221567,12 +221567,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -221583,12 +221583,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -221601,12 +221601,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -221617,12 +221617,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -221635,12 +221635,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -221651,12 +221651,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -221669,12 +221669,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -221685,12 +221685,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -221703,12 +221703,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -221719,12 +221719,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -221737,12 +221737,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -221753,12 +221753,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -221771,12 +221771,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -221787,12 +221787,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -221805,12 +221805,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -221821,12 +221821,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -221839,12 +221839,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -221855,12 +221855,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -221873,12 +221873,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -221889,12 +221889,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -221907,12 +221907,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -221923,12 +221923,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -221941,12 +221941,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -221957,12 +221957,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -221975,12 +221975,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -221991,12 +221991,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -222009,12 +222009,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -222025,12 +222025,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -222043,12 +222043,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -222059,12 +222059,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -222077,12 +222077,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -222093,12 +222093,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -222111,12 +222111,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -222127,12 +222127,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -222145,12 +222145,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 31
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -222161,12 +222161,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 31, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -222179,12 +222179,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 31
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -222195,12 +222195,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 31, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -222213,12 +222213,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 31
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -222229,12 +222229,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 31, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -222247,12 +222247,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 31
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -222263,12 +222263,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 31, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -222281,12 +222281,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -222297,12 +222297,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -222315,12 +222315,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -222331,12 +222331,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -222349,12 +222349,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -222365,12 +222365,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -222383,12 +222383,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -222399,12 +222399,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -222417,12 +222417,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -222433,12 +222433,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -222451,12 +222451,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -222467,12 +222467,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -222485,12 +222485,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -222501,12 +222501,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -222519,12 +222519,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -222535,12 +222535,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -222553,12 +222553,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -222569,12 +222569,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -222587,12 +222587,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -222603,12 +222603,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -222621,12 +222621,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -222637,12 +222637,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -222655,12 +222655,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -222671,12 +222671,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -222689,12 +222689,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -222705,12 +222705,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -222723,12 +222723,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -222739,12 +222739,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -222757,12 +222757,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -222773,12 +222773,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -222791,12 +222791,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -222807,12 +222807,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -222825,12 +222825,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -222841,12 +222841,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -222859,12 +222859,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -222875,12 +222875,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -222893,12 +222893,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -222909,12 +222909,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -222927,12 +222927,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -222943,12 +222943,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -222961,12 +222961,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -222977,12 +222977,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -222995,12 +222995,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -223011,12 +223011,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -223029,12 +223029,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -223045,12 +223045,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -223063,12 +223063,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -223079,12 +223079,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -223097,12 +223097,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -223113,12 +223113,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -223131,12 +223131,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -223147,12 +223147,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -223165,12 +223165,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -223181,12 +223181,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -223199,12 +223199,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -223215,12 +223215,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -223233,12 +223233,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -223249,12 +223249,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -223267,12 +223267,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -223283,12 +223283,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -223301,12 +223301,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -223317,12 +223317,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -223335,12 +223335,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -223351,12 +223351,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -223369,12 +223369,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -223385,12 +223385,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -223403,12 +223403,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -223419,12 +223419,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -223437,12 +223437,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -223453,12 +223453,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -223471,12 +223471,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -223487,12 +223487,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -223505,12 +223505,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -223521,12 +223521,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -223539,12 +223539,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -223555,12 +223555,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -223573,12 +223573,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -223589,12 +223589,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -223607,12 +223607,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -223623,12 +223623,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -223641,12 +223641,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -223657,12 +223657,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -223675,12 +223675,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -223691,12 +223691,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = b0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -223709,12 +223709,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = b1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -223725,12 +223725,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = b1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -223743,12 +223743,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = b1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -223759,12 +223759,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = b1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -223777,12 +223777,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = b1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -223793,12 +223793,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = b1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -223811,12 +223811,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = b1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -223827,12 +223827,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = b1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -223845,12 +223845,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -223861,12 +223861,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -223879,12 +223879,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -223895,12 +223895,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -223913,12 +223913,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -223929,12 +223929,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -223947,12 +223947,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -223963,12 +223963,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -223981,12 +223981,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -223997,12 +223997,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -224015,12 +224015,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -224031,12 +224031,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -224049,12 +224049,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -224065,12 +224065,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -224083,12 +224083,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -224099,12 +224099,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -224117,12 +224117,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -224133,12 +224133,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -224151,12 +224151,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -224167,12 +224167,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -224185,12 +224185,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -224201,12 +224201,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -224219,12 +224219,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -224235,12 +224235,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -224253,12 +224253,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -224269,12 +224269,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -224287,12 +224287,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -224303,12 +224303,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -224321,12 +224321,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -224337,12 +224337,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -224355,12 +224355,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -224371,12 +224371,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -224389,12 +224389,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -224405,12 +224405,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -224423,12 +224423,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -224439,12 +224439,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -224457,12 +224457,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -224473,12 +224473,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -224491,12 +224491,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -224507,12 +224507,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -224525,12 +224525,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -224541,12 +224541,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -224559,12 +224559,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -224575,12 +224575,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -224593,12 +224593,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -224609,12 +224609,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -224627,12 +224627,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -224643,12 +224643,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -224661,12 +224661,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -224677,12 +224677,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -224695,12 +224695,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -224711,12 +224711,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -224729,12 +224729,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = b0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -224745,12 +224745,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -224763,12 +224763,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -224779,12 +224779,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -224797,12 +224797,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -224813,12 +224813,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -224831,12 +224831,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -224847,12 +224847,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -224865,12 +224865,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -224881,12 +224881,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -224899,12 +224899,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -224915,12 +224915,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -224933,12 +224933,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -224949,12 +224949,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -224967,12 +224967,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -224983,12 +224983,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -225001,12 +225001,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -225017,12 +225017,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -225035,12 +225035,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -225051,12 +225051,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -225069,12 +225069,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -225085,12 +225085,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -225103,12 +225103,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -225119,12 +225119,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -225137,12 +225137,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -225153,12 +225153,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -225171,12 +225171,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -225187,12 +225187,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -225205,12 +225205,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -225221,12 +225221,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 70, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -225239,12 +225239,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -225255,12 +225255,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 70, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -225273,12 +225273,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 71
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -225289,12 +225289,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 71, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -225307,12 +225307,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 71
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -225323,12 +225323,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 71, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -225341,12 +225341,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 71
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -225357,12 +225357,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 71, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -225375,12 +225375,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 71
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -225391,12 +225391,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 71, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -225409,12 +225409,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -225425,12 +225425,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -225443,12 +225443,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -225459,12 +225459,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -225477,12 +225477,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -225493,12 +225493,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -225511,12 +225511,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -225527,12 +225527,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -225545,12 +225545,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -225561,12 +225561,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -225579,12 +225579,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -225595,12 +225595,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -225613,12 +225613,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -225629,12 +225629,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -225647,12 +225647,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -225663,12 +225663,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -225681,12 +225681,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -225697,12 +225697,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -225715,12 +225715,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -225731,12 +225731,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -225749,12 +225749,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -225765,12 +225765,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -225783,12 +225783,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -225799,12 +225799,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -225817,12 +225817,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -225833,12 +225833,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -225851,12 +225851,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -225867,12 +225867,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -225885,12 +225885,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -225901,12 +225901,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -225919,12 +225919,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -225935,12 +225935,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -225953,12 +225953,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -225969,12 +225969,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -225987,12 +225987,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -226003,12 +226003,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -226021,12 +226021,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -226037,12 +226037,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -226055,12 +226055,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -226071,12 +226071,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -226089,12 +226089,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -226105,12 +226105,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -226123,12 +226123,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -226139,12 +226139,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -226157,12 +226157,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -226173,12 +226173,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -226191,12 +226191,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -226207,12 +226207,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -226225,12 +226225,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -226241,12 +226241,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -226259,12 +226259,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -226275,12 +226275,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -226293,12 +226293,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -226309,12 +226309,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -226327,12 +226327,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -226343,12 +226343,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -226361,12 +226361,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -226377,12 +226377,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -226395,12 +226395,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -226411,12 +226411,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -226429,12 +226429,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -226445,12 +226445,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -226463,12 +226463,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -226479,12 +226479,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -226497,12 +226497,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -226513,12 +226513,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -226531,12 +226531,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -226547,12 +226547,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -226565,12 +226565,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -226581,12 +226581,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -226599,12 +226599,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -226615,12 +226615,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -226633,12 +226633,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -226649,12 +226649,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -226667,12 +226667,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -226683,12 +226683,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -226701,12 +226701,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -226717,12 +226717,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -226735,12 +226735,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -226751,12 +226751,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -226769,12 +226769,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -226785,12 +226785,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 70, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -226803,12 +226803,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -226819,12 +226819,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -226837,12 +226837,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = f1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -226853,12 +226853,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -226871,12 +226871,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = f1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -226887,12 +226887,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -226905,12 +226905,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = f1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -226921,12 +226921,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -226939,12 +226939,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = f1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -226955,12 +226955,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -226973,12 +226973,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -226989,12 +226989,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -227007,12 +227007,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -227023,12 +227023,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -227041,12 +227041,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -227057,12 +227057,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -227075,12 +227075,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -227091,12 +227091,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -227109,12 +227109,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -227125,12 +227125,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -227143,12 +227143,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -227159,12 +227159,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -227177,12 +227177,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -227193,12 +227193,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -227211,12 +227211,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -227227,12 +227227,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -227245,12 +227245,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -227261,12 +227261,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -227279,12 +227279,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -227295,12 +227295,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -227313,12 +227313,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -227329,12 +227329,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -227347,12 +227347,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -227363,12 +227363,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -227381,12 +227381,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -227397,12 +227397,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -227415,12 +227415,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -227431,12 +227431,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -227449,12 +227449,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -227465,12 +227465,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -227483,12 +227483,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -227499,12 +227499,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -227517,12 +227517,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -227533,12 +227533,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -227551,12 +227551,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -227567,12 +227567,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -227585,12 +227585,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -227601,12 +227601,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -227619,12 +227619,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -227635,12 +227635,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -227653,12 +227653,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -227669,12 +227669,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -227687,12 +227687,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -227703,12 +227703,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -227721,12 +227721,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -227737,12 +227737,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -227755,12 +227755,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -227771,12 +227771,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -227789,12 +227789,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -227805,12 +227805,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -227823,12 +227823,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -227839,12 +227839,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -227857,12 +227857,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -227873,12 +227873,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -227891,12 +227891,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -227907,12 +227907,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -227925,12 +227925,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -227941,12 +227941,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -227959,12 +227959,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -227975,12 +227975,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -227993,12 +227993,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -228009,12 +228009,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -228027,12 +228027,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -228043,12 +228043,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -228061,12 +228061,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -228077,12 +228077,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -228095,12 +228095,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -228111,12 +228111,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -228129,12 +228129,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -228145,12 +228145,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -228163,12 +228163,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -228179,12 +228179,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -228197,12 +228197,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -228213,12 +228213,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -228231,12 +228231,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -228247,12 +228247,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -228265,12 +228265,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -228281,12 +228281,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -228299,12 +228299,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -228315,12 +228315,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -228333,12 +228333,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -228349,12 +228349,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -228367,12 +228367,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -228383,12 +228383,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 09, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -228401,12 +228401,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -228417,12 +228417,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 09, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -228435,12 +228435,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -228451,12 +228451,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 09, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -228469,12 +228469,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -228485,12 +228485,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 09, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -228503,12 +228503,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -228519,12 +228519,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 09, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -228537,12 +228537,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -228553,12 +228553,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -228571,12 +228571,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -228587,12 +228587,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -228605,12 +228605,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -228621,12 +228621,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -228639,12 +228639,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -228655,12 +228655,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -228673,12 +228673,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -228689,12 +228689,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -228707,12 +228707,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -228723,12 +228723,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -228741,12 +228741,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -228757,12 +228757,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -228775,12 +228775,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -228791,12 +228791,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -228809,12 +228809,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -228825,12 +228825,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -228843,12 +228843,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -228859,12 +228859,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -228877,12 +228877,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -228893,12 +228893,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -228911,12 +228911,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -228927,12 +228927,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -228945,12 +228945,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -228961,12 +228961,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -228979,12 +228979,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -228995,12 +228995,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -229013,12 +229013,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -229029,12 +229029,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -229047,12 +229047,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -229063,12 +229063,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -229081,12 +229081,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -229097,12 +229097,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -229115,12 +229115,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -229131,12 +229131,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -229149,12 +229149,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -229165,12 +229165,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -229183,12 +229183,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -229199,12 +229199,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -229217,12 +229217,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -229233,12 +229233,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -229251,12 +229251,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -229267,12 +229267,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -229285,12 +229285,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -229301,12 +229301,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -229319,12 +229319,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -229335,12 +229335,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -229353,12 +229353,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -229369,12 +229369,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -229387,12 +229387,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -229403,12 +229403,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -229421,12 +229421,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -229437,12 +229437,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -229455,12 +229455,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -229471,12 +229471,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -229489,12 +229489,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -229505,12 +229505,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -229523,12 +229523,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -229539,12 +229539,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -229557,12 +229557,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -229573,12 +229573,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -229591,12 +229591,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -229607,12 +229607,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -229625,12 +229625,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -229641,12 +229641,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -229659,12 +229659,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -229675,12 +229675,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -229693,12 +229693,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -229709,12 +229709,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -229727,12 +229727,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -229743,12 +229743,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -229761,12 +229761,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -229777,12 +229777,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -229795,12 +229795,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -229811,12 +229811,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -229829,12 +229829,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -229845,12 +229845,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -229863,12 +229863,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -229879,12 +229879,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -229897,12 +229897,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -229913,12 +229913,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 81, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -229931,12 +229931,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -229947,12 +229947,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 81, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -229965,12 +229965,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 89
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -229981,12 +229981,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 89, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -229999,12 +229999,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 89
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -230015,12 +230015,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 89, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -230033,12 +230033,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 89
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -230049,12 +230049,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 89, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -230067,12 +230067,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 89
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -230083,12 +230083,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 89, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -230101,12 +230101,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -230117,12 +230117,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -230135,12 +230135,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -230151,12 +230151,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -230169,12 +230169,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -230185,12 +230185,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -230203,12 +230203,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -230219,12 +230219,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -230237,12 +230237,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -230253,12 +230253,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -230271,12 +230271,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -230287,12 +230287,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -230305,12 +230305,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -230321,12 +230321,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -230339,12 +230339,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -230355,12 +230355,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -230373,12 +230373,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -230389,12 +230389,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -230407,12 +230407,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -230423,12 +230423,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -230441,12 +230441,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -230457,12 +230457,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -230475,12 +230475,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -230491,12 +230491,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -230509,12 +230509,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -230525,12 +230525,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -230543,12 +230543,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -230559,12 +230559,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -230577,12 +230577,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -230593,12 +230593,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -230611,12 +230611,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -230627,12 +230627,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -230645,12 +230645,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -230661,12 +230661,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -230679,12 +230679,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -230695,12 +230695,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -230713,12 +230713,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -230729,12 +230729,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -230747,12 +230747,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -230763,12 +230763,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -230781,12 +230781,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -230797,12 +230797,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -230815,12 +230815,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -230831,12 +230831,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -230849,12 +230849,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -230865,12 +230865,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -230883,12 +230883,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -230899,12 +230899,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -230917,12 +230917,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -230933,12 +230933,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -230951,12 +230951,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -230967,12 +230967,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -230985,12 +230985,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -231001,12 +231001,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -231019,12 +231019,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -231035,12 +231035,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -231053,12 +231053,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -231069,12 +231069,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -231087,12 +231087,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -231103,12 +231103,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -231121,12 +231121,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -231137,12 +231137,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -231155,12 +231155,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -231171,12 +231171,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -231189,12 +231189,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -231205,12 +231205,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -231223,12 +231223,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -231239,12 +231239,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -231257,12 +231257,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -231273,12 +231273,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -231291,12 +231291,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -231307,12 +231307,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -231325,12 +231325,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -231341,12 +231341,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -231359,12 +231359,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -231375,12 +231375,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -231393,12 +231393,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -231409,12 +231409,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -231427,12 +231427,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -231443,12 +231443,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -231461,12 +231461,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -231477,12 +231477,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 41, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -231495,12 +231495,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -231511,12 +231511,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 41, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -231529,12 +231529,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -231545,12 +231545,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 41, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -231563,12 +231563,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 49
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -231579,12 +231579,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 49, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -231597,12 +231597,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 49
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -231613,12 +231613,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 49, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -231631,12 +231631,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 49
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -231647,12 +231647,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 49, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -231665,12 +231665,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -231681,12 +231681,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -231699,12 +231699,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -231715,12 +231715,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -231733,12 +231733,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -231749,12 +231749,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -231767,12 +231767,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -231783,12 +231783,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -231801,12 +231801,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -231817,12 +231817,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -231835,12 +231835,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -231851,12 +231851,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -231869,12 +231869,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -231885,12 +231885,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -231903,12 +231903,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -231919,12 +231919,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -231937,12 +231937,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -231953,12 +231953,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -231971,12 +231971,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -231987,12 +231987,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -232005,12 +232005,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -232021,12 +232021,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -232039,12 +232039,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -232055,12 +232055,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -232073,12 +232073,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -232089,12 +232089,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -232107,12 +232107,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -232123,12 +232123,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -232141,12 +232141,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -232157,12 +232157,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -232175,12 +232175,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -232191,12 +232191,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -232209,12 +232209,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -232225,12 +232225,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -232243,12 +232243,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -232259,12 +232259,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -232277,12 +232277,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -232293,12 +232293,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -232311,12 +232311,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -232327,12 +232327,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -232345,12 +232345,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -232361,12 +232361,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -232379,12 +232379,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -232395,12 +232395,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -232413,12 +232413,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -232429,12 +232429,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -232447,12 +232447,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -232463,12 +232463,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -232481,12 +232481,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -232497,12 +232497,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -232515,12 +232515,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -232531,12 +232531,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -232549,12 +232549,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -232565,12 +232565,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -232583,12 +232583,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -232599,12 +232599,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -232617,12 +232617,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -232633,12 +232633,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -232651,12 +232651,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -232667,12 +232667,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -232685,12 +232685,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -232701,12 +232701,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -232719,12 +232719,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -232735,12 +232735,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -232753,12 +232753,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -232769,12 +232769,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -232787,12 +232787,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -232803,12 +232803,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -232821,12 +232821,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -232837,12 +232837,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -232855,12 +232855,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -232871,12 +232871,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -232889,12 +232889,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -232905,12 +232905,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -232923,12 +232923,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -232939,12 +232939,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -232957,12 +232957,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -232973,12 +232973,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -232991,12 +232991,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -233007,12 +233007,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -233025,12 +233025,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -233041,12 +233041,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -233059,12 +233059,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -233075,12 +233075,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -233093,12 +233093,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -233109,12 +233109,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -233127,12 +233127,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c9
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -233143,12 +233143,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c9, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -233161,12 +233161,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c9
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -233177,12 +233177,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c9, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -233195,12 +233195,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c9
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -233211,12 +233211,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c9, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -233229,12 +233229,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -233245,12 +233245,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -233263,12 +233263,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -233279,12 +233279,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -233297,12 +233297,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -233313,12 +233313,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -233331,12 +233331,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -233347,12 +233347,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -233365,12 +233365,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -233381,12 +233381,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -233399,12 +233399,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -233415,12 +233415,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -233433,12 +233433,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -233449,12 +233449,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -233467,12 +233467,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -233483,12 +233483,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -233501,12 +233501,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -233517,12 +233517,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -233535,12 +233535,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -233551,12 +233551,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -233569,12 +233569,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -233585,12 +233585,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -233603,12 +233603,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -233619,12 +233619,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -233637,12 +233637,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -233653,12 +233653,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -233671,12 +233671,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -233687,12 +233687,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -233705,12 +233705,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -233721,12 +233721,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -233739,12 +233739,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -233755,12 +233755,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -233773,12 +233773,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -233789,12 +233789,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -233807,12 +233807,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -233823,12 +233823,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -233841,12 +233841,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -233857,12 +233857,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -233875,12 +233875,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -233891,12 +233891,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -233909,12 +233909,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -233925,12 +233925,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -233943,12 +233943,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -233959,12 +233959,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -233977,12 +233977,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -233993,12 +233993,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -234011,12 +234011,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -234027,12 +234027,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -234045,12 +234045,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -234061,12 +234061,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -234079,12 +234079,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -234095,12 +234095,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -234113,12 +234113,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -234129,12 +234129,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -234147,12 +234147,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -234163,12 +234163,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -234181,12 +234181,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -234197,12 +234197,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -234215,12 +234215,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -234231,12 +234231,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -234249,12 +234249,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -234265,12 +234265,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -234283,12 +234283,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -234299,12 +234299,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -234317,12 +234317,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -234333,12 +234333,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -234351,12 +234351,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -234367,12 +234367,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -234385,12 +234385,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -234401,12 +234401,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -234419,12 +234419,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -234435,12 +234435,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -234453,12 +234453,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -234469,12 +234469,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -234487,12 +234487,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -234503,12 +234503,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -234521,12 +234521,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -234537,12 +234537,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -234555,12 +234555,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -234571,12 +234571,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -234589,12 +234589,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -234605,12 +234605,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 28, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -234623,12 +234623,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -234639,12 +234639,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 28, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -234657,12 +234657,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -234673,12 +234673,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 28, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -234691,12 +234691,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 29
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -234707,12 +234707,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 29, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -234725,12 +234725,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 29
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -234741,12 +234741,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 29, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -234759,12 +234759,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 29
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -234775,12 +234775,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 29, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -234793,12 +234793,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -234809,12 +234809,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -234827,12 +234827,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -234843,12 +234843,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -234861,12 +234861,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -234877,12 +234877,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -234895,12 +234895,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -234911,12 +234911,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -234929,12 +234929,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -234945,12 +234945,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -234963,12 +234963,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -234979,12 +234979,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -234997,12 +234997,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -235013,12 +235013,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -235031,12 +235031,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -235047,12 +235047,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -235065,12 +235065,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -235081,12 +235081,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -235099,12 +235099,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -235115,12 +235115,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -235133,12 +235133,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -235149,12 +235149,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -235167,12 +235167,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -235183,12 +235183,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -235201,12 +235201,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -235217,12 +235217,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -235235,12 +235235,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -235251,12 +235251,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -235269,12 +235269,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -235285,12 +235285,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -235303,12 +235303,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -235319,12 +235319,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -235337,12 +235337,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -235353,12 +235353,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -235371,12 +235371,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -235387,12 +235387,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -235405,12 +235405,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -235421,12 +235421,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -235439,12 +235439,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -235455,12 +235455,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -235473,12 +235473,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -235489,12 +235489,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -235507,12 +235507,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -235523,12 +235523,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -235541,12 +235541,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -235557,12 +235557,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -235575,12 +235575,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -235591,12 +235591,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -235609,12 +235609,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -235625,12 +235625,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -235643,12 +235643,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -235659,12 +235659,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -235677,12 +235677,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -235693,12 +235693,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -235711,12 +235711,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -235727,12 +235727,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -235745,12 +235745,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -235761,12 +235761,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -235779,12 +235779,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -235795,12 +235795,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -235813,12 +235813,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -235829,12 +235829,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -235847,12 +235847,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -235863,12 +235863,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -235881,12 +235881,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -235897,12 +235897,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -235915,12 +235915,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -235931,12 +235931,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -235949,12 +235949,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -235965,12 +235965,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -235983,12 +235983,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -235999,12 +235999,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -236017,12 +236017,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -236033,12 +236033,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -236051,12 +236051,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -236067,12 +236067,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -236085,12 +236085,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -236101,12 +236101,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -236119,12 +236119,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -236135,12 +236135,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -236153,12 +236153,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -236169,12 +236169,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 81, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -236187,12 +236187,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = a1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -236203,12 +236203,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -236221,12 +236221,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = a1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -236237,12 +236237,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -236255,12 +236255,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = a9
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -236271,12 +236271,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a9, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -236289,12 +236289,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = a9
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -236305,12 +236305,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a9, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -236323,12 +236323,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = a9
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -236339,12 +236339,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a9, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -236357,12 +236357,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -236373,12 +236373,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -236391,12 +236391,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -236407,12 +236407,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -236425,12 +236425,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -236441,12 +236441,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -236459,12 +236459,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -236475,12 +236475,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -236493,12 +236493,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 28
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -236509,12 +236509,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -236527,12 +236527,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -236543,12 +236543,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -236561,12 +236561,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -236577,12 +236577,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -236595,12 +236595,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -236611,12 +236611,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -236629,12 +236629,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -236645,12 +236645,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -236663,12 +236663,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -236679,12 +236679,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -236697,12 +236697,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -236713,12 +236713,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -236731,12 +236731,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -236747,12 +236747,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -236765,12 +236765,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -236781,12 +236781,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -236799,12 +236799,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -236815,12 +236815,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -236833,12 +236833,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -236849,12 +236849,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -236867,12 +236867,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -236883,12 +236883,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -236901,12 +236901,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -236917,12 +236917,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -236935,12 +236935,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -236951,12 +236951,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -236969,12 +236969,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -236985,12 +236985,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -237003,12 +237003,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -237019,12 +237019,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -237037,12 +237037,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 09
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -237053,12 +237053,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -237071,12 +237071,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -237087,12 +237087,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -237105,12 +237105,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -237121,12 +237121,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -237139,12 +237139,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -237155,12 +237155,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -237173,12 +237173,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -237189,12 +237189,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -237207,12 +237207,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -237223,12 +237223,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -237241,12 +237241,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -237257,12 +237257,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -237275,12 +237275,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -237291,12 +237291,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -237309,12 +237309,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -237325,12 +237325,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -237343,12 +237343,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -237359,12 +237359,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -237377,12 +237377,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -237393,12 +237393,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -237411,12 +237411,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -237427,12 +237427,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -237445,12 +237445,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -237461,12 +237461,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -237479,12 +237479,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -237495,12 +237495,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -237513,12 +237513,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -237529,12 +237529,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -237547,12 +237547,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -237563,12 +237563,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -237581,12 +237581,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -237597,12 +237597,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -237615,12 +237615,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -237631,12 +237631,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -237649,12 +237649,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -237665,12 +237665,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -237683,12 +237683,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -237699,12 +237699,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -237717,12 +237717,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -237733,12 +237733,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -237751,12 +237751,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -237767,12 +237767,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 68, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -237785,12 +237785,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -237801,12 +237801,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 68, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -237819,12 +237819,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 69
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -237835,12 +237835,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 69, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -237853,12 +237853,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 69
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -237869,12 +237869,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 69, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -237887,12 +237887,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 69
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -237903,12 +237903,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 69, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -237921,12 +237921,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -237937,12 +237937,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -237955,12 +237955,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -237971,12 +237971,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -237989,12 +237989,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -238005,12 +238005,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -238023,12 +238023,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -238039,12 +238039,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -238057,12 +238057,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -238073,12 +238073,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -238091,12 +238091,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -238107,12 +238107,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -238125,12 +238125,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -238141,12 +238141,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -238159,12 +238159,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -238175,12 +238175,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -238193,12 +238193,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -238209,12 +238209,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -238227,12 +238227,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -238243,12 +238243,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -238261,12 +238261,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -238277,12 +238277,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -238295,12 +238295,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -238311,12 +238311,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -238329,12 +238329,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -238345,12 +238345,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -238363,12 +238363,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -238379,12 +238379,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -238397,12 +238397,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -238413,12 +238413,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -238431,12 +238431,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -238447,12 +238447,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -238465,12 +238465,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -238481,12 +238481,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -238499,12 +238499,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -238515,12 +238515,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -238533,12 +238533,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -238549,12 +238549,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -238567,12 +238567,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -238583,12 +238583,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -238601,12 +238601,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -238617,12 +238617,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -238635,12 +238635,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -238651,12 +238651,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -238669,12 +238669,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -238685,12 +238685,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -238703,12 +238703,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -238719,12 +238719,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -238737,12 +238737,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -238753,12 +238753,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -238771,12 +238771,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -238787,12 +238787,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -238805,12 +238805,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -238821,12 +238821,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -238839,12 +238839,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -238855,12 +238855,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -238873,12 +238873,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -238889,12 +238889,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -238907,12 +238907,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -238923,12 +238923,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -238941,12 +238941,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -238957,12 +238957,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -238975,12 +238975,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -238991,12 +238991,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -239009,12 +239009,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -239025,12 +239025,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -239043,12 +239043,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -239059,12 +239059,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -239077,12 +239077,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -239093,12 +239093,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -239111,12 +239111,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -239127,12 +239127,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -239145,12 +239145,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -239161,12 +239161,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -239179,12 +239179,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -239195,12 +239195,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -239213,12 +239213,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -239229,12 +239229,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -239247,12 +239247,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -239263,12 +239263,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -239281,12 +239281,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -239297,12 +239297,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -239315,12 +239315,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = e1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -239331,12 +239331,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -239349,12 +239349,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = e1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -239365,12 +239365,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -239383,12 +239383,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = e9
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -239399,12 +239399,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e9, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -239417,12 +239417,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = e9
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -239433,12 +239433,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e9, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -239451,12 +239451,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = e9
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -239467,12 +239467,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e9, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -239485,12 +239485,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -239501,12 +239501,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -239519,12 +239519,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -239535,12 +239535,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -239553,12 +239553,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -239569,12 +239569,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -239587,12 +239587,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -239603,12 +239603,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -239621,12 +239621,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -239637,12 +239637,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -239655,12 +239655,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = e1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -239671,12 +239671,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -239689,12 +239689,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = e1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -239705,12 +239705,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -239723,12 +239723,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = e1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -239739,12 +239739,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -239757,12 +239757,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = e1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -239773,12 +239773,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -239791,12 +239791,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = e1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -239807,12 +239807,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -239825,12 +239825,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = e1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -239841,12 +239841,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -239859,12 +239859,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -239875,12 +239875,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -239893,12 +239893,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -239909,12 +239909,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -239927,12 +239927,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -239943,12 +239943,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -239961,12 +239961,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -239977,12 +239977,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -239995,12 +239995,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -240011,12 +240011,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -240029,12 +240029,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -240045,12 +240045,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -240063,12 +240063,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -240079,12 +240079,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -240097,12 +240097,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -240113,12 +240113,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -240131,12 +240131,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -240147,12 +240147,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -240165,12 +240165,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -240181,12 +240181,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -240199,12 +240199,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -240215,12 +240215,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -240233,12 +240233,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -240249,12 +240249,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -240267,12 +240267,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -240283,12 +240283,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -240301,12 +240301,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -240317,12 +240317,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -240335,12 +240335,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -240351,12 +240351,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -240369,12 +240369,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -240385,12 +240385,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -240403,12 +240403,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -240419,12 +240419,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -240437,12 +240437,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -240453,12 +240453,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -240471,12 +240471,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -240487,12 +240487,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -240505,12 +240505,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -240521,12 +240521,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -240539,12 +240539,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -240555,12 +240555,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -240573,12 +240573,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -240589,12 +240589,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -240607,12 +240607,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -240623,12 +240623,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -240641,12 +240641,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -240657,12 +240657,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -240675,12 +240675,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -240691,12 +240691,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -240709,12 +240709,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -240725,12 +240725,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -240743,12 +240743,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -240759,12 +240759,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -240777,12 +240777,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -240793,12 +240793,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -240811,12 +240811,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -240827,12 +240827,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -240845,12 +240845,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -240861,12 +240861,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -240879,12 +240879,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -240895,12 +240895,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -240913,12 +240913,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -240929,12 +240929,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 19, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -240947,12 +240947,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -240963,12 +240963,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 19, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -240981,12 +240981,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -240997,12 +240997,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 19, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -241015,12 +241015,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -241031,12 +241031,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 19, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -241049,12 +241049,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -241065,12 +241065,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -241083,12 +241083,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -241099,12 +241099,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -241117,12 +241117,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -241133,12 +241133,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -241151,12 +241151,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -241167,12 +241167,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -241185,12 +241185,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -241201,12 +241201,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -241219,12 +241219,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -241235,12 +241235,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -241253,12 +241253,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -241269,12 +241269,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -241287,12 +241287,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -241303,12 +241303,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -241321,12 +241321,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -241337,12 +241337,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -241355,12 +241355,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -241371,12 +241371,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -241389,12 +241389,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -241405,12 +241405,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -241423,12 +241423,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -241439,12 +241439,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -241457,12 +241457,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -241473,12 +241473,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -241491,12 +241491,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -241507,12 +241507,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -241525,12 +241525,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -241541,12 +241541,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -241559,12 +241559,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -241575,12 +241575,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -241593,12 +241593,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -241609,12 +241609,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -241627,12 +241627,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -241643,12 +241643,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -241661,12 +241661,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -241677,12 +241677,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -241695,12 +241695,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -241711,12 +241711,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -241729,12 +241729,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -241745,12 +241745,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -241763,12 +241763,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -241779,12 +241779,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -241797,12 +241797,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -241813,12 +241813,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -241831,12 +241831,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -241847,12 +241847,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -241865,12 +241865,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -241881,12 +241881,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -241899,12 +241899,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -241915,12 +241915,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -241933,12 +241933,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -241949,12 +241949,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -241967,12 +241967,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -241983,12 +241983,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -242001,12 +242001,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -242017,12 +242017,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -242035,12 +242035,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -242051,12 +242051,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -242069,12 +242069,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -242085,12 +242085,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -242103,12 +242103,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -242119,12 +242119,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -242137,12 +242137,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -242153,12 +242153,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -242171,12 +242171,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -242187,12 +242187,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -242205,12 +242205,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -242221,12 +242221,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -242239,12 +242239,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -242255,12 +242255,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -242273,12 +242273,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -242289,12 +242289,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -242307,12 +242307,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -242323,12 +242323,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -242341,12 +242341,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -242357,12 +242357,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -242375,12 +242375,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -242391,12 +242391,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -242409,12 +242409,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -242425,12 +242425,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -242443,12 +242443,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -242459,12 +242459,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -242477,12 +242477,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -242493,12 +242493,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 19, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -242511,12 +242511,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 99
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -242527,12 +242527,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 99, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -242545,12 +242545,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 99
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -242561,12 +242561,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 99, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -242579,12 +242579,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 99
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -242595,12 +242595,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 99, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -242613,12 +242613,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -242629,12 +242629,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -242647,12 +242647,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -242663,12 +242663,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -242681,12 +242681,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -242697,12 +242697,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -242715,12 +242715,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -242731,12 +242731,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -242749,12 +242749,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -242765,12 +242765,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -242783,12 +242783,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -242799,12 +242799,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -242817,12 +242817,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -242833,12 +242833,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -242851,12 +242851,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -242867,12 +242867,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -242885,12 +242885,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -242901,12 +242901,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -242919,12 +242919,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -242935,12 +242935,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -242953,12 +242953,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -242969,12 +242969,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -242987,12 +242987,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -243003,12 +243003,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -243021,12 +243021,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -243037,12 +243037,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -243055,12 +243055,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -243071,12 +243071,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -243089,12 +243089,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -243105,12 +243105,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -243123,12 +243123,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -243139,12 +243139,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -243157,12 +243157,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -243173,12 +243173,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -243191,12 +243191,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -243207,12 +243207,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -243225,12 +243225,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -243241,12 +243241,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -243259,12 +243259,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -243275,12 +243275,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -243293,12 +243293,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -243309,12 +243309,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -243327,12 +243327,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -243343,12 +243343,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -243361,12 +243361,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -243377,12 +243377,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -243395,12 +243395,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -243411,12 +243411,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -243429,12 +243429,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -243445,12 +243445,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -243463,12 +243463,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -243479,12 +243479,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -243497,12 +243497,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -243513,12 +243513,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -243531,12 +243531,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -243547,12 +243547,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -243565,12 +243565,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -243581,12 +243581,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -243599,12 +243599,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -243615,12 +243615,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -243633,12 +243633,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -243649,12 +243649,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -243667,12 +243667,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -243683,12 +243683,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -243701,12 +243701,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -243717,12 +243717,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -243735,12 +243735,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -243751,12 +243751,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -243769,12 +243769,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -243785,12 +243785,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -243803,12 +243803,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -243819,12 +243819,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -243837,12 +243837,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -243853,12 +243853,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -243871,12 +243871,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -243887,12 +243887,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -243905,12 +243905,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -243921,12 +243921,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -243939,12 +243939,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -243955,12 +243955,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -243973,12 +243973,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -243989,12 +243989,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -244007,12 +244007,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 58
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -244023,12 +244023,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 58, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -244041,12 +244041,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 58
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -244057,12 +244057,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 58, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -244075,12 +244075,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 59
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -244091,12 +244091,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 59, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -244109,12 +244109,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 59
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -244125,12 +244125,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 59, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -244143,12 +244143,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 59
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -244159,12 +244159,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 59, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -244177,12 +244177,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -244193,12 +244193,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -244211,12 +244211,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -244227,12 +244227,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -244245,12 +244245,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -244261,12 +244261,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -244279,12 +244279,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -244295,12 +244295,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -244313,12 +244313,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -244329,12 +244329,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -244347,12 +244347,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -244363,12 +244363,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -244381,12 +244381,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -244397,12 +244397,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -244415,12 +244415,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -244431,12 +244431,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -244449,12 +244449,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -244465,12 +244465,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -244483,12 +244483,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -244499,12 +244499,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -244517,12 +244517,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -244533,12 +244533,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -244551,12 +244551,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -244567,12 +244567,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -244585,12 +244585,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -244601,12 +244601,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -244619,12 +244619,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -244635,12 +244635,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -244653,12 +244653,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -244669,12 +244669,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -244687,12 +244687,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -244703,12 +244703,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -244721,12 +244721,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -244737,12 +244737,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -244755,12 +244755,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -244771,12 +244771,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -244789,12 +244789,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -244805,12 +244805,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -244823,12 +244823,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -244839,12 +244839,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -244857,12 +244857,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -244873,12 +244873,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -244891,12 +244891,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -244907,12 +244907,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -244925,12 +244925,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -244941,12 +244941,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -244959,12 +244959,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -244975,12 +244975,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -244993,12 +244993,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -245009,12 +245009,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -245027,12 +245027,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -245043,12 +245043,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -245061,12 +245061,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -245077,12 +245077,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -245095,12 +245095,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -245111,12 +245111,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -245129,12 +245129,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -245145,12 +245145,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -245163,12 +245163,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -245179,12 +245179,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -245197,12 +245197,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -245213,12 +245213,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -245231,12 +245231,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -245247,12 +245247,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -245265,12 +245265,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -245281,12 +245281,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -245299,12 +245299,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -245315,12 +245315,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -245333,12 +245333,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -245349,12 +245349,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -245367,12 +245367,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -245383,12 +245383,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -245401,12 +245401,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -245417,12 +245417,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -245435,12 +245435,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -245451,12 +245451,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -245469,12 +245469,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -245485,12 +245485,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -245503,12 +245503,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -245519,12 +245519,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -245537,12 +245537,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -245553,12 +245553,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -245571,12 +245571,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -245587,12 +245587,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -245605,12 +245605,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -245621,12 +245621,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d8, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -245639,12 +245639,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = d9
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -245655,12 +245655,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d9, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -245673,12 +245673,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = d9
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -245689,12 +245689,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d9, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -245707,12 +245707,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = d9
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -245723,12 +245723,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d9, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -245741,12 +245741,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -245757,12 +245757,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -245775,12 +245775,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -245791,12 +245791,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -245809,12 +245809,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -245825,12 +245825,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -245843,12 +245843,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -245859,12 +245859,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -245877,12 +245877,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -245893,12 +245893,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -245911,12 +245911,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -245927,12 +245927,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -245945,12 +245945,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -245961,12 +245961,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -245979,12 +245979,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -245995,12 +245995,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -246013,12 +246013,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -246029,12 +246029,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -246047,12 +246047,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -246063,12 +246063,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -246081,12 +246081,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -246097,12 +246097,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -246115,12 +246115,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -246131,12 +246131,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -246149,12 +246149,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -246165,12 +246165,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -246183,12 +246183,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -246199,12 +246199,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -246217,12 +246217,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -246233,12 +246233,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -246251,12 +246251,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -246267,12 +246267,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -246285,12 +246285,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -246301,12 +246301,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -246319,12 +246319,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -246335,12 +246335,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -246353,12 +246353,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -246369,12 +246369,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -246387,12 +246387,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -246403,12 +246403,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -246421,12 +246421,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -246437,12 +246437,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -246455,12 +246455,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -246471,12 +246471,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -246489,12 +246489,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -246505,12 +246505,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -246523,12 +246523,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -246539,12 +246539,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -246557,12 +246557,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -246573,12 +246573,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -246591,12 +246591,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -246607,12 +246607,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -246625,12 +246625,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -246641,12 +246641,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -246659,12 +246659,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -246675,12 +246675,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -246693,12 +246693,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -246709,12 +246709,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -246727,12 +246727,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -246743,12 +246743,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -246761,12 +246761,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -246777,12 +246777,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -246795,12 +246795,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -246811,12 +246811,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -246829,12 +246829,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -246845,12 +246845,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -246863,12 +246863,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -246879,12 +246879,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -246897,12 +246897,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -246913,12 +246913,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -246931,12 +246931,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -246947,12 +246947,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -246965,12 +246965,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -246981,12 +246981,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -246999,12 +246999,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -247015,12 +247015,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -247033,12 +247033,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -247049,12 +247049,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -247067,12 +247067,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -247083,12 +247083,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -247101,12 +247101,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -247117,12 +247117,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 38, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -247135,12 +247135,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -247151,12 +247151,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 38, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -247169,12 +247169,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -247185,12 +247185,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 38, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -247203,12 +247203,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 39
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -247219,12 +247219,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 39, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -247237,12 +247237,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 39
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -247253,12 +247253,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 39, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -247271,12 +247271,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 39
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -247287,12 +247287,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 39, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -247305,12 +247305,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -247321,12 +247321,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -247339,12 +247339,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -247355,12 +247355,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -247373,12 +247373,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -247389,12 +247389,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -247407,12 +247407,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -247423,12 +247423,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -247441,12 +247441,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -247457,12 +247457,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -247475,12 +247475,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -247491,12 +247491,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -247509,12 +247509,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -247525,12 +247525,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -247543,12 +247543,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -247559,12 +247559,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -247577,12 +247577,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -247593,12 +247593,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -247611,12 +247611,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -247627,12 +247627,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -247645,12 +247645,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -247661,12 +247661,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -247679,12 +247679,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -247695,12 +247695,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -247713,12 +247713,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -247729,12 +247729,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -247747,12 +247747,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -247763,12 +247763,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -247781,12 +247781,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -247797,12 +247797,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -247815,12 +247815,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -247831,12 +247831,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -247849,12 +247849,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -247865,12 +247865,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -247883,12 +247883,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -247899,12 +247899,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -247917,12 +247917,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -247933,12 +247933,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -247951,12 +247951,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -247967,12 +247967,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -247985,12 +247985,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -248001,12 +248001,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -248019,12 +248019,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -248035,12 +248035,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -248053,12 +248053,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -248069,12 +248069,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -248087,12 +248087,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -248103,12 +248103,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -248121,12 +248121,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -248137,12 +248137,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -248155,12 +248155,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -248171,12 +248171,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -248189,12 +248189,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -248205,12 +248205,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -248223,12 +248223,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -248239,12 +248239,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -248257,12 +248257,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -248273,12 +248273,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -248291,12 +248291,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -248307,12 +248307,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -248325,12 +248325,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -248341,12 +248341,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -248359,12 +248359,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -248375,12 +248375,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -248393,12 +248393,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -248409,12 +248409,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -248427,12 +248427,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -248443,12 +248443,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -248461,12 +248461,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -248477,12 +248477,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -248495,12 +248495,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -248511,12 +248511,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -248529,12 +248529,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -248545,12 +248545,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -248563,12 +248563,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -248579,12 +248579,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -248597,12 +248597,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -248613,12 +248613,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -248631,12 +248631,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -248647,12 +248647,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -248665,12 +248665,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -248681,12 +248681,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 38, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -248699,12 +248699,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -248715,12 +248715,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 38, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -248733,12 +248733,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = b8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -248749,12 +248749,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = b8, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -248767,12 +248767,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = b9
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -248783,12 +248783,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = b9, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -248801,12 +248801,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = b9
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -248817,12 +248817,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = b9, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -248835,12 +248835,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = b9
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -248851,12 +248851,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = b9, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -248869,12 +248869,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -248885,12 +248885,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -248903,12 +248903,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -248919,12 +248919,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -248937,12 +248937,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -248953,12 +248953,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -248971,12 +248971,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -248987,12 +248987,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -249005,12 +249005,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -249021,12 +249021,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -249039,12 +249039,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -249055,12 +249055,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -249073,12 +249073,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -249089,12 +249089,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -249107,12 +249107,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -249123,12 +249123,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -249141,12 +249141,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -249157,12 +249157,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -249175,12 +249175,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -249191,12 +249191,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -249209,12 +249209,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -249225,12 +249225,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -249243,12 +249243,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -249259,12 +249259,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -249277,12 +249277,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -249293,12 +249293,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -249311,12 +249311,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -249327,12 +249327,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -249345,12 +249345,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -249361,12 +249361,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -249379,12 +249379,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -249395,12 +249395,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -249413,12 +249413,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -249429,12 +249429,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -249447,12 +249447,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -249463,12 +249463,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -249481,12 +249481,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -249497,12 +249497,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -249515,12 +249515,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -249531,12 +249531,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -249549,12 +249549,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -249565,12 +249565,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -249583,12 +249583,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 19
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -249599,12 +249599,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -249617,12 +249617,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -249633,12 +249633,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -249651,12 +249651,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -249667,12 +249667,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -249685,12 +249685,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -249701,12 +249701,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -249719,12 +249719,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -249735,12 +249735,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -249753,12 +249753,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -249769,12 +249769,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -249787,12 +249787,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -249803,12 +249803,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -249821,12 +249821,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -249837,12 +249837,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -249855,12 +249855,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -249871,12 +249871,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -249889,12 +249889,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -249905,12 +249905,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -249923,12 +249923,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -249939,12 +249939,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -249957,12 +249957,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -249973,12 +249973,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -249991,12 +249991,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -250007,12 +250007,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -250025,12 +250025,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -250041,12 +250041,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -250059,12 +250059,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -250075,12 +250075,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -250093,12 +250093,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -250109,12 +250109,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -250127,12 +250127,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -250143,12 +250143,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -250161,12 +250161,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -250177,12 +250177,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -250195,12 +250195,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -250211,12 +250211,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -250229,12 +250229,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -250245,12 +250245,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 38, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -250263,12 +250263,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -250279,12 +250279,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 78, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -250297,12 +250297,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -250313,12 +250313,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 78, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -250331,12 +250331,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 79
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -250347,12 +250347,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 79, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -250365,12 +250365,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 79
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -250381,12 +250381,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 79, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -250399,12 +250399,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 79
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -250415,12 +250415,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 79, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -250433,12 +250433,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -250449,12 +250449,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -250467,12 +250467,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -250483,12 +250483,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -250501,12 +250501,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -250517,12 +250517,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -250535,12 +250535,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -250551,12 +250551,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -250569,12 +250569,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -250585,12 +250585,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -250603,12 +250603,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -250619,12 +250619,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -250637,12 +250637,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -250653,12 +250653,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -250671,12 +250671,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -250687,12 +250687,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -250705,12 +250705,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -250721,12 +250721,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -250739,12 +250739,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -250755,12 +250755,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -250773,12 +250773,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -250789,12 +250789,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -250807,12 +250807,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -250823,12 +250823,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -250841,12 +250841,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -250857,12 +250857,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -250875,12 +250875,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -250891,12 +250891,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -250909,12 +250909,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -250925,12 +250925,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -250943,12 +250943,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -250959,12 +250959,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -250977,12 +250977,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -250993,12 +250993,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -251011,12 +251011,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -251027,12 +251027,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -251045,12 +251045,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -251061,12 +251061,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -251079,12 +251079,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -251095,12 +251095,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -251113,12 +251113,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -251129,12 +251129,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -251147,12 +251147,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -251163,12 +251163,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -251181,12 +251181,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -251197,12 +251197,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -251215,12 +251215,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -251231,12 +251231,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -251249,12 +251249,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -251265,12 +251265,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -251283,12 +251283,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -251299,12 +251299,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -251317,12 +251317,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -251333,12 +251333,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -251351,12 +251351,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -251367,12 +251367,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -251385,12 +251385,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -251401,12 +251401,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -251419,12 +251419,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -251435,12 +251435,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -251453,12 +251453,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -251469,12 +251469,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -251487,12 +251487,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -251503,12 +251503,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -251521,12 +251521,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -251537,12 +251537,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -251555,12 +251555,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -251571,12 +251571,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -251589,12 +251589,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -251605,12 +251605,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -251623,12 +251623,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -251639,12 +251639,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -251657,12 +251657,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -251673,12 +251673,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -251691,12 +251691,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -251707,12 +251707,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -251725,12 +251725,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -251741,12 +251741,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -251759,12 +251759,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -251775,12 +251775,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -251793,12 +251793,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -251809,12 +251809,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 38, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -251827,12 +251827,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -251843,12 +251843,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 78, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -251861,12 +251861,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -251877,12 +251877,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f8, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -251895,12 +251895,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = f9
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -251911,12 +251911,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f9, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -251929,12 +251929,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = f9
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -251945,12 +251945,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f9, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -251963,12 +251963,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = f9
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -251979,12 +251979,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f9, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -251997,12 +251997,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -252013,12 +252013,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -252031,12 +252031,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -252047,12 +252047,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -252065,12 +252065,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -252081,12 +252081,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -252099,12 +252099,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -252115,12 +252115,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -252133,12 +252133,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -252149,12 +252149,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -252167,12 +252167,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -252183,12 +252183,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -252201,12 +252201,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -252217,12 +252217,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -252235,12 +252235,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -252251,12 +252251,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -252269,12 +252269,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -252285,12 +252285,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -252303,12 +252303,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -252319,12 +252319,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -252337,12 +252337,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -252353,12 +252353,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -252371,12 +252371,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -252387,12 +252387,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -252405,12 +252405,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -252421,12 +252421,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -252439,12 +252439,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -252455,12 +252455,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -252473,12 +252473,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -252489,12 +252489,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -252507,12 +252507,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -252523,12 +252523,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -252541,12 +252541,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -252557,12 +252557,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -252575,12 +252575,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -252591,12 +252591,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -252609,12 +252609,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -252625,12 +252625,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -252643,12 +252643,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -252659,12 +252659,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -252677,12 +252677,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -252693,12 +252693,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -252711,12 +252711,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -252727,12 +252727,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -252745,12 +252745,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -252761,12 +252761,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -252779,12 +252779,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -252795,12 +252795,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -252813,12 +252813,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -252829,12 +252829,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -252847,12 +252847,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -252863,12 +252863,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -252881,12 +252881,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -252897,12 +252897,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -252915,12 +252915,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -252931,12 +252931,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -252949,12 +252949,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -252965,12 +252965,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -252983,12 +252983,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -252999,12 +252999,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -253017,12 +253017,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -253033,12 +253033,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -253051,12 +253051,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -253067,12 +253067,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -253085,12 +253085,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -253101,12 +253101,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -253119,12 +253119,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -253135,12 +253135,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -253153,12 +253153,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -253169,12 +253169,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -253187,12 +253187,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -253203,12 +253203,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -253221,12 +253221,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -253237,12 +253237,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -253255,12 +253255,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -253271,12 +253271,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -253289,12 +253289,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -253305,12 +253305,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -253323,12 +253323,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -253339,12 +253339,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -253357,12 +253357,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -253373,12 +253373,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 05, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -253391,12 +253391,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -253407,12 +253407,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 05, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -253425,12 +253425,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -253441,12 +253441,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 05, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -253459,12 +253459,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -253475,12 +253475,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 05, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -253493,12 +253493,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -253509,12 +253509,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 05, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -253527,12 +253527,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -253543,12 +253543,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 05, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -253561,12 +253561,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -253577,12 +253577,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -253595,12 +253595,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -253611,12 +253611,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -253629,12 +253629,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -253645,12 +253645,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -253663,12 +253663,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -253679,12 +253679,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -253697,12 +253697,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -253713,12 +253713,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -253731,12 +253731,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -253747,12 +253747,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -253765,12 +253765,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -253781,12 +253781,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -253799,12 +253799,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -253815,12 +253815,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -253833,12 +253833,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -253849,12 +253849,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -253867,12 +253867,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -253883,12 +253883,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -253901,12 +253901,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -253917,12 +253917,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -253935,12 +253935,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -253951,12 +253951,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -253969,12 +253969,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -253985,12 +253985,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -254003,12 +254003,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -254019,12 +254019,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -254037,12 +254037,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -254053,12 +254053,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -254071,12 +254071,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -254087,12 +254087,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -254105,12 +254105,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -254121,12 +254121,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -254139,12 +254139,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -254155,12 +254155,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -254173,12 +254173,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -254189,12 +254189,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -254207,12 +254207,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -254223,12 +254223,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -254241,12 +254241,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -254257,12 +254257,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -254275,12 +254275,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -254291,12 +254291,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -254309,12 +254309,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -254325,12 +254325,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -254343,12 +254343,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -254359,12 +254359,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -254377,12 +254377,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -254393,12 +254393,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -254411,12 +254411,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -254427,12 +254427,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -254445,12 +254445,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -254461,12 +254461,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -254479,12 +254479,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -254495,12 +254495,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -254513,12 +254513,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -254529,12 +254529,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -254547,12 +254547,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -254563,12 +254563,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -254581,12 +254581,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -254597,12 +254597,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -254615,12 +254615,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -254631,12 +254631,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -254649,12 +254649,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -254665,12 +254665,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -254683,12 +254683,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -254699,12 +254699,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -254717,12 +254717,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -254733,12 +254733,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -254751,12 +254751,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -254767,12 +254767,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -254785,12 +254785,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -254801,12 +254801,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -254819,12 +254819,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -254835,12 +254835,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -254853,12 +254853,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -254869,12 +254869,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -254887,12 +254887,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -254903,12 +254903,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -254921,12 +254921,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -254937,12 +254937,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 81, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -254955,12 +254955,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 85
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -254971,12 +254971,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 85, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -254989,12 +254989,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 85
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -255005,12 +255005,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 85, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -255023,12 +255023,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 85
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -255039,12 +255039,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 85, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -255057,12 +255057,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 85
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -255073,12 +255073,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 85, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -255091,12 +255091,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 85
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -255107,12 +255107,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 85, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -255125,12 +255125,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -255141,12 +255141,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -255159,12 +255159,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -255175,12 +255175,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -255193,12 +255193,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -255209,12 +255209,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -255227,12 +255227,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -255243,12 +255243,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -255261,12 +255261,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -255277,12 +255277,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -255295,12 +255295,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -255311,12 +255311,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -255329,12 +255329,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -255345,12 +255345,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -255363,12 +255363,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -255379,12 +255379,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -255397,12 +255397,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -255413,12 +255413,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -255431,12 +255431,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -255447,12 +255447,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -255465,12 +255465,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -255481,12 +255481,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -255499,12 +255499,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -255515,12 +255515,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -255533,12 +255533,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -255549,12 +255549,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -255567,12 +255567,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -255583,12 +255583,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -255601,12 +255601,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -255617,12 +255617,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -255635,12 +255635,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -255651,12 +255651,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -255669,12 +255669,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -255685,12 +255685,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -255703,12 +255703,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -255719,12 +255719,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -255737,12 +255737,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -255753,12 +255753,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -255771,12 +255771,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -255787,12 +255787,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -255805,12 +255805,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -255821,12 +255821,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -255839,12 +255839,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -255855,12 +255855,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -255873,12 +255873,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -255889,12 +255889,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -255907,12 +255907,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -255923,12 +255923,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -255941,12 +255941,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -255957,12 +255957,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -255975,12 +255975,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -255991,12 +255991,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -256009,12 +256009,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -256025,12 +256025,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -256043,12 +256043,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -256059,12 +256059,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -256077,12 +256077,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -256093,12 +256093,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -256111,12 +256111,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -256127,12 +256127,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -256145,12 +256145,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -256161,12 +256161,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -256179,12 +256179,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -256195,12 +256195,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -256213,12 +256213,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -256229,12 +256229,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -256247,12 +256247,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -256263,12 +256263,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -256281,12 +256281,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -256297,12 +256297,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -256315,12 +256315,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -256331,12 +256331,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -256349,12 +256349,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -256365,12 +256365,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -256383,12 +256383,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -256399,12 +256399,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -256417,12 +256417,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -256433,12 +256433,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -256451,12 +256451,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -256467,12 +256467,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -256485,12 +256485,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -256501,12 +256501,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 05, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -256519,12 +256519,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -256535,12 +256535,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 05, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -256553,12 +256553,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 45
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -256569,12 +256569,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 45, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -256587,12 +256587,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 45
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -256603,12 +256603,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 45, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -256621,12 +256621,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 45
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -256637,12 +256637,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 45, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -256655,12 +256655,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 45
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -256671,12 +256671,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 45, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -256689,12 +256689,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -256705,12 +256705,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -256723,12 +256723,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -256739,12 +256739,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -256757,12 +256757,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -256773,12 +256773,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -256791,12 +256791,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -256807,12 +256807,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -256825,12 +256825,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -256841,12 +256841,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -256859,12 +256859,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -256875,12 +256875,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -256893,12 +256893,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -256909,12 +256909,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -256927,12 +256927,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -256943,12 +256943,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -256961,12 +256961,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -256977,12 +256977,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -256995,12 +256995,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -257011,12 +257011,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -257029,12 +257029,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -257045,12 +257045,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -257063,12 +257063,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -257079,12 +257079,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -257097,12 +257097,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -257113,12 +257113,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -257131,12 +257131,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -257147,12 +257147,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -257165,12 +257165,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -257181,12 +257181,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -257199,12 +257199,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -257215,12 +257215,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -257233,12 +257233,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -257249,12 +257249,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -257267,12 +257267,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -257283,12 +257283,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -257301,12 +257301,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -257317,12 +257317,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -257335,12 +257335,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -257351,12 +257351,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -257369,12 +257369,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -257385,12 +257385,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -257403,12 +257403,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -257419,12 +257419,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -257437,12 +257437,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -257453,12 +257453,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -257471,12 +257471,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -257487,12 +257487,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -257505,12 +257505,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -257521,12 +257521,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -257539,12 +257539,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -257555,12 +257555,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -257573,12 +257573,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -257589,12 +257589,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -257607,12 +257607,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -257623,12 +257623,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -257641,12 +257641,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -257657,12 +257657,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -257675,12 +257675,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -257691,12 +257691,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -257709,12 +257709,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -257725,12 +257725,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -257743,12 +257743,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -257759,12 +257759,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -257777,12 +257777,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -257793,12 +257793,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -257811,12 +257811,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -257827,12 +257827,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -257845,12 +257845,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -257861,12 +257861,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -257879,12 +257879,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -257895,12 +257895,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -257913,12 +257913,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -257929,12 +257929,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -257947,12 +257947,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -257963,12 +257963,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -257981,12 +257981,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -257997,12 +257997,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -258015,12 +258015,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -258031,12 +258031,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -258049,12 +258049,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -258065,12 +258065,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -258083,12 +258083,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -258099,12 +258099,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -258117,12 +258117,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c5
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -258133,12 +258133,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c5, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -258151,12 +258151,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c5
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -258167,12 +258167,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c5, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -258185,12 +258185,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c5
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -258201,12 +258201,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c5, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -258219,12 +258219,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c5
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -258235,12 +258235,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c5, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -258253,12 +258253,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -258269,12 +258269,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -258287,12 +258287,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -258303,12 +258303,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -258321,12 +258321,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -258337,12 +258337,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -258355,12 +258355,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -258371,12 +258371,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -258389,12 +258389,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -258405,12 +258405,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -258423,12 +258423,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -258439,12 +258439,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -258457,12 +258457,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -258473,12 +258473,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -258491,12 +258491,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -258507,12 +258507,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -258525,12 +258525,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -258541,12 +258541,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -258559,12 +258559,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -258575,12 +258575,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -258593,12 +258593,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -258609,12 +258609,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -258627,12 +258627,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -258643,12 +258643,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -258661,12 +258661,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -258677,12 +258677,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -258695,12 +258695,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -258711,12 +258711,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -258729,12 +258729,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -258745,12 +258745,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -258763,12 +258763,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -258779,12 +258779,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -258797,12 +258797,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -258813,12 +258813,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -258831,12 +258831,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -258847,12 +258847,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -258865,12 +258865,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -258881,12 +258881,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -258899,12 +258899,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -258915,12 +258915,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -258933,12 +258933,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -258949,12 +258949,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -258967,12 +258967,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -258983,12 +258983,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -259001,12 +259001,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -259017,12 +259017,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -259035,12 +259035,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -259051,12 +259051,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -259069,12 +259069,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -259085,12 +259085,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -259103,12 +259103,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -259119,12 +259119,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -259137,12 +259137,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -259153,12 +259153,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -259171,12 +259171,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -259187,12 +259187,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -259205,12 +259205,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -259221,12 +259221,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -259239,12 +259239,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -259255,12 +259255,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -259273,12 +259273,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -259289,12 +259289,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -259307,12 +259307,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -259323,12 +259323,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -259341,12 +259341,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -259357,12 +259357,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -259375,12 +259375,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -259391,12 +259391,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -259409,12 +259409,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -259425,12 +259425,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -259443,12 +259443,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -259459,12 +259459,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -259477,12 +259477,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -259493,12 +259493,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -259511,12 +259511,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -259527,12 +259527,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -259545,12 +259545,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -259561,12 +259561,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -259579,12 +259579,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -259595,12 +259595,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -259613,12 +259613,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -259629,12 +259629,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 05, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -259647,12 +259647,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -259663,12 +259663,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 05, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -259681,12 +259681,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -259697,12 +259697,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 05, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -259715,12 +259715,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 25
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -259731,12 +259731,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 25, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -259749,12 +259749,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 25
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -259765,12 +259765,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 25, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -259783,12 +259783,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 25
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -259799,12 +259799,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 25, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -259817,12 +259817,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -259833,12 +259833,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -259851,12 +259851,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -259867,12 +259867,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -259885,12 +259885,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -259901,12 +259901,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -259919,12 +259919,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -259935,12 +259935,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -259953,12 +259953,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -259969,12 +259969,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -259987,12 +259987,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -260003,12 +260003,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -260021,12 +260021,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -260037,12 +260037,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -260055,12 +260055,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -260071,12 +260071,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -260089,12 +260089,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -260105,12 +260105,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -260123,12 +260123,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -260139,12 +260139,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -260157,12 +260157,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -260173,12 +260173,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -260191,12 +260191,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -260207,12 +260207,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -260225,12 +260225,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -260241,12 +260241,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -260259,12 +260259,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -260275,12 +260275,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -260293,12 +260293,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -260309,12 +260309,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -260327,12 +260327,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -260343,12 +260343,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -260361,12 +260361,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -260377,12 +260377,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -260395,12 +260395,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -260411,12 +260411,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -260429,12 +260429,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -260445,12 +260445,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -260463,12 +260463,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -260479,12 +260479,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -260497,12 +260497,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -260513,12 +260513,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -260531,12 +260531,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -260547,12 +260547,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -260565,12 +260565,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -260581,12 +260581,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -260599,12 +260599,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -260615,12 +260615,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -260633,12 +260633,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -260649,12 +260649,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -260667,12 +260667,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -260683,12 +260683,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -260701,12 +260701,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -260717,12 +260717,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -260735,12 +260735,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -260751,12 +260751,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -260769,12 +260769,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -260785,12 +260785,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -260803,12 +260803,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -260819,12 +260819,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -260837,12 +260837,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -260853,12 +260853,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -260871,12 +260871,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -260887,12 +260887,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -260905,12 +260905,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -260921,12 +260921,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -260939,12 +260939,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -260955,12 +260955,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -260973,12 +260973,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -260989,12 +260989,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -261007,12 +261007,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -261023,12 +261023,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -261041,12 +261041,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -261057,12 +261057,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -261075,12 +261075,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -261091,12 +261091,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -261109,12 +261109,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -261125,12 +261125,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -261143,12 +261143,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -261159,12 +261159,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -261177,12 +261177,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -261193,12 +261193,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 81, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -261211,12 +261211,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = a1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -261227,12 +261227,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -261245,12 +261245,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = a1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -261261,12 +261261,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -261279,12 +261279,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = a5
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -261295,12 +261295,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a5, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -261313,12 +261313,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = a5
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -261329,12 +261329,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a5, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -261347,12 +261347,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = a5
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -261363,12 +261363,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a5, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -261381,12 +261381,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -261397,12 +261397,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -261415,12 +261415,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -261431,12 +261431,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -261449,12 +261449,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -261465,12 +261465,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -261483,12 +261483,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -261499,12 +261499,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -261517,12 +261517,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -261533,12 +261533,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -261551,12 +261551,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -261567,12 +261567,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -261585,12 +261585,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -261601,12 +261601,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -261619,12 +261619,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -261635,12 +261635,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -261653,12 +261653,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -261669,12 +261669,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -261687,12 +261687,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -261703,12 +261703,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -261721,12 +261721,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = a1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -261737,12 +261737,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -261755,12 +261755,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -261771,12 +261771,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -261789,12 +261789,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -261805,12 +261805,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -261823,12 +261823,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -261839,12 +261839,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -261857,12 +261857,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -261873,12 +261873,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -261891,12 +261891,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -261907,12 +261907,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -261925,12 +261925,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -261941,12 +261941,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -261959,12 +261959,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -261975,12 +261975,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -261993,12 +261993,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -262009,12 +262009,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -262027,12 +262027,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -262043,12 +262043,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -262061,12 +262061,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -262077,12 +262077,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -262095,12 +262095,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -262111,12 +262111,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -262129,12 +262129,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -262145,12 +262145,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -262163,12 +262163,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -262179,12 +262179,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -262197,12 +262197,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -262213,12 +262213,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -262231,12 +262231,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -262247,12 +262247,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -262265,12 +262265,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 21
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -262281,12 +262281,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -262299,12 +262299,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -262315,12 +262315,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -262333,12 +262333,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -262349,12 +262349,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -262367,12 +262367,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -262383,12 +262383,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -262401,12 +262401,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -262417,12 +262417,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -262435,12 +262435,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -262451,12 +262451,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -262469,12 +262469,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -262485,12 +262485,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -262503,12 +262503,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -262519,12 +262519,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -262537,12 +262537,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -262553,12 +262553,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -262571,12 +262571,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -262587,12 +262587,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -262605,12 +262605,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -262621,12 +262621,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -262639,12 +262639,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -262655,12 +262655,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -262673,12 +262673,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -262689,12 +262689,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -262707,12 +262707,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -262723,12 +262723,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -262741,12 +262741,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -262757,12 +262757,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -262775,12 +262775,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 61
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -262791,12 +262791,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 61, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -262809,12 +262809,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 61
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -262825,12 +262825,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 61, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -262843,12 +262843,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 65
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -262859,12 +262859,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 65, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -262877,12 +262877,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 65
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -262893,12 +262893,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 65, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -262911,12 +262911,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 65
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -262927,12 +262927,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 65, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -262945,12 +262945,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -262961,12 +262961,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -262979,12 +262979,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -262995,12 +262995,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -263013,12 +263013,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -263029,12 +263029,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -263047,12 +263047,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -263063,12 +263063,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -263081,12 +263081,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -263097,12 +263097,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -263115,12 +263115,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -263131,12 +263131,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -263149,12 +263149,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -263165,12 +263165,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -263183,12 +263183,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -263199,12 +263199,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -263217,12 +263217,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -263233,12 +263233,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -263251,12 +263251,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -263267,12 +263267,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -263285,12 +263285,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -263301,12 +263301,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -263319,12 +263319,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -263335,12 +263335,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -263353,12 +263353,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -263369,12 +263369,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -263387,12 +263387,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -263403,12 +263403,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -263421,12 +263421,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -263437,12 +263437,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -263455,12 +263455,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -263471,12 +263471,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -263489,12 +263489,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -263505,12 +263505,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -263523,12 +263523,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -263539,12 +263539,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -263557,12 +263557,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -263573,12 +263573,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -263591,12 +263591,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -263607,12 +263607,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -263625,12 +263625,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -263641,12 +263641,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -263659,12 +263659,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -263675,12 +263675,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -263693,12 +263693,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -263709,12 +263709,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -263727,12 +263727,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -263743,12 +263743,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -263761,12 +263761,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -263777,12 +263777,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -263795,12 +263795,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -263811,12 +263811,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -263829,12 +263829,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -263845,12 +263845,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -263863,12 +263863,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -263879,12 +263879,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -263897,12 +263897,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -263913,12 +263913,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -263931,12 +263931,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -263947,12 +263947,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -263965,12 +263965,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -263981,12 +263981,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -263999,12 +263999,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -264015,12 +264015,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -264033,12 +264033,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -264049,12 +264049,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -264067,12 +264067,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -264083,12 +264083,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -264101,12 +264101,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -264117,12 +264117,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -264135,12 +264135,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -264151,12 +264151,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -264169,12 +264169,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -264185,12 +264185,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -264203,12 +264203,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -264219,12 +264219,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -264237,12 +264237,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -264253,12 +264253,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -264271,12 +264271,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -264287,12 +264287,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -264305,12 +264305,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -264321,12 +264321,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -264339,12 +264339,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = e1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -264355,12 +264355,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -264373,12 +264373,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = e1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -264389,12 +264389,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -264407,12 +264407,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = e5
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -264423,12 +264423,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e5, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -264441,12 +264441,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = e5
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -264457,12 +264457,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e5, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -264475,12 +264475,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = e5
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -264491,12 +264491,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e5, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -264509,12 +264509,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -264525,12 +264525,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -264543,12 +264543,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -264559,12 +264559,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -264577,12 +264577,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -264593,12 +264593,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -264611,12 +264611,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -264627,12 +264627,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -264645,12 +264645,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -264661,12 +264661,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -264679,12 +264679,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = e1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -264695,12 +264695,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -264713,12 +264713,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = e1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -264729,12 +264729,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -264747,12 +264747,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = e1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -264763,12 +264763,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -264781,12 +264781,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = e1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -264797,12 +264797,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -264815,12 +264815,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = e1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -264831,12 +264831,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -264849,12 +264849,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = e1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -264865,12 +264865,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -264883,12 +264883,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -264899,12 +264899,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -264917,12 +264917,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -264933,12 +264933,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -264951,12 +264951,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -264967,12 +264967,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -264985,12 +264985,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -265001,12 +265001,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -265019,12 +265019,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -265035,12 +265035,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -265053,12 +265053,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -265069,12 +265069,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -265087,12 +265087,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -265103,12 +265103,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -265121,12 +265121,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -265137,12 +265137,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -265155,12 +265155,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -265171,12 +265171,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -265189,12 +265189,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -265205,12 +265205,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -265223,12 +265223,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 64
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -265239,12 +265239,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -265257,12 +265257,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -265273,12 +265273,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -265291,12 +265291,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -265307,12 +265307,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -265325,12 +265325,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -265341,12 +265341,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -265359,12 +265359,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -265375,12 +265375,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -265393,12 +265393,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -265409,12 +265409,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -265427,12 +265427,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -265443,12 +265443,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -265461,12 +265461,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -265477,12 +265477,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -265495,12 +265495,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -265511,12 +265511,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -265529,12 +265529,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -265545,12 +265545,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -265563,12 +265563,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -265579,12 +265579,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -265597,12 +265597,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -265613,12 +265613,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -265631,12 +265631,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -265647,12 +265647,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -265665,12 +265665,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -265681,12 +265681,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -265699,12 +265699,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -265715,12 +265715,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -265733,12 +265733,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -265749,12 +265749,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -265767,12 +265767,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -265783,12 +265783,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -265801,12 +265801,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -265817,12 +265817,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -265835,12 +265835,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -265851,12 +265851,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -265869,12 +265869,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -265885,12 +265885,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 05, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -265903,12 +265903,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -265919,12 +265919,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 05, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -265937,12 +265937,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 15
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -265953,12 +265953,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 15, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -265971,12 +265971,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 15
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -265987,12 +265987,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 15, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -266005,12 +266005,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 15
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -266021,12 +266021,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 15, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -266039,12 +266039,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 15
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -266055,12 +266055,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 15, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -266073,12 +266073,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -266089,12 +266089,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -266107,12 +266107,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -266123,12 +266123,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -266141,12 +266141,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -266157,12 +266157,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -266175,12 +266175,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -266191,12 +266191,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -266209,12 +266209,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -266225,12 +266225,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -266243,12 +266243,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -266259,12 +266259,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -266277,12 +266277,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -266293,12 +266293,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -266311,12 +266311,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -266327,12 +266327,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -266345,12 +266345,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -266361,12 +266361,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -266379,12 +266379,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -266395,12 +266395,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -266413,12 +266413,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -266429,12 +266429,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -266447,12 +266447,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -266463,12 +266463,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -266481,12 +266481,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -266497,12 +266497,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -266515,12 +266515,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -266531,12 +266531,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -266549,12 +266549,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -266565,12 +266565,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -266583,12 +266583,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -266599,12 +266599,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -266617,12 +266617,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -266633,12 +266633,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -266651,12 +266651,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -266667,12 +266667,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -266685,12 +266685,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -266701,12 +266701,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -266719,12 +266719,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -266735,12 +266735,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -266753,12 +266753,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -266769,12 +266769,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -266787,12 +266787,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -266803,12 +266803,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -266821,12 +266821,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -266837,12 +266837,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -266855,12 +266855,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -266871,12 +266871,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -266889,12 +266889,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -266905,12 +266905,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -266923,12 +266923,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -266939,12 +266939,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -266957,12 +266957,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -266973,12 +266973,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -266991,12 +266991,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -267007,12 +267007,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -267025,12 +267025,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -267041,12 +267041,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -267059,12 +267059,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -267075,12 +267075,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -267093,12 +267093,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -267109,12 +267109,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -267127,12 +267127,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -267143,12 +267143,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -267161,12 +267161,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -267177,12 +267177,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -267195,12 +267195,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -267211,12 +267211,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -267229,12 +267229,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -267245,12 +267245,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -267263,12 +267263,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -267279,12 +267279,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -267297,12 +267297,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -267313,12 +267313,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -267331,12 +267331,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -267347,12 +267347,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -267365,12 +267365,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -267381,12 +267381,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -267399,12 +267399,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -267415,12 +267415,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -267433,12 +267433,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -267449,12 +267449,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 81, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -267467,12 +267467,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 85
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -267483,12 +267483,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 85, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -267501,12 +267501,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 85
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -267517,12 +267517,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 85, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -267535,12 +267535,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 95
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -267551,12 +267551,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 95, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -267569,12 +267569,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 95
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -267585,12 +267585,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 95, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -267603,12 +267603,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 95
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -267619,12 +267619,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 95, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -267637,12 +267637,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -267653,12 +267653,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -267671,12 +267671,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -267687,12 +267687,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -267705,12 +267705,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -267721,12 +267721,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -267739,12 +267739,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -267755,12 +267755,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -267773,12 +267773,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -267789,12 +267789,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -267807,12 +267807,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -267823,12 +267823,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -267841,12 +267841,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -267857,12 +267857,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -267875,12 +267875,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -267891,12 +267891,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -267909,12 +267909,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -267925,12 +267925,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -267943,12 +267943,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -267959,12 +267959,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -267977,12 +267977,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 81
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -267993,12 +267993,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -268011,12 +268011,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -268027,12 +268027,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -268045,12 +268045,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -268061,12 +268061,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -268079,12 +268079,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -268095,12 +268095,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -268113,12 +268113,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -268129,12 +268129,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -268147,12 +268147,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -268163,12 +268163,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -268181,12 +268181,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -268197,12 +268197,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -268215,12 +268215,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -268231,12 +268231,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -268249,12 +268249,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -268265,12 +268265,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -268283,12 +268283,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -268299,12 +268299,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -268317,12 +268317,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -268333,12 +268333,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -268351,12 +268351,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -268367,12 +268367,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -268385,12 +268385,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -268401,12 +268401,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -268419,12 +268419,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -268435,12 +268435,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -268453,12 +268453,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -268469,12 +268469,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -268487,12 +268487,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -268503,12 +268503,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -268521,12 +268521,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -268537,12 +268537,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -268555,12 +268555,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -268571,12 +268571,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -268589,12 +268589,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -268605,12 +268605,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -268623,12 +268623,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -268639,12 +268639,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -268657,12 +268657,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -268673,12 +268673,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -268691,12 +268691,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -268707,12 +268707,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -268725,12 +268725,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -268741,12 +268741,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -268759,12 +268759,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -268775,12 +268775,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -268793,12 +268793,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -268809,12 +268809,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -268827,12 +268827,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -268843,12 +268843,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -268861,12 +268861,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -268877,12 +268877,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -268895,12 +268895,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -268911,12 +268911,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -268929,12 +268929,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -268945,12 +268945,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -268963,12 +268963,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -268979,12 +268979,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -268997,12 +268997,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -269013,12 +269013,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 05, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -269031,12 +269031,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -269047,12 +269047,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 05, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -269065,12 +269065,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 15
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -269081,12 +269081,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 15, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -269099,12 +269099,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 15
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -269115,12 +269115,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 15, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -269133,12 +269133,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 55
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -269149,12 +269149,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 55, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -269167,12 +269167,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 55
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -269183,12 +269183,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 55, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -269201,12 +269201,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -269217,12 +269217,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -269235,12 +269235,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -269251,12 +269251,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -269269,12 +269269,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -269285,12 +269285,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -269303,12 +269303,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -269319,12 +269319,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -269337,12 +269337,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -269353,12 +269353,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -269371,12 +269371,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -269387,12 +269387,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -269405,12 +269405,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -269421,12 +269421,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -269439,12 +269439,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -269455,12 +269455,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -269473,12 +269473,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -269489,12 +269489,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -269507,12 +269507,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -269523,12 +269523,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -269541,12 +269541,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 41
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -269557,12 +269557,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -269575,12 +269575,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -269591,12 +269591,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -269609,12 +269609,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -269625,12 +269625,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -269643,12 +269643,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -269659,12 +269659,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -269677,12 +269677,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -269693,12 +269693,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -269711,12 +269711,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -269727,12 +269727,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -269745,12 +269745,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -269761,12 +269761,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -269779,12 +269779,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -269795,12 +269795,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -269813,12 +269813,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -269829,12 +269829,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -269847,12 +269847,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -269863,12 +269863,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -269881,12 +269881,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -269897,12 +269897,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -269915,12 +269915,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -269931,12 +269931,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -269949,12 +269949,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -269965,12 +269965,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -269983,12 +269983,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -269999,12 +269999,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -270017,12 +270017,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -270033,12 +270033,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -270051,12 +270051,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -270067,12 +270067,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -270085,12 +270085,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 05
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -270101,12 +270101,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -270119,12 +270119,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -270135,12 +270135,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -270153,12 +270153,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -270169,12 +270169,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -270187,12 +270187,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -270203,12 +270203,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -270221,12 +270221,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -270237,12 +270237,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -270255,12 +270255,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -270271,12 +270271,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -270289,12 +270289,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -270305,12 +270305,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -270323,12 +270323,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -270339,12 +270339,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -270357,12 +270357,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -270373,12 +270373,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -270391,12 +270391,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -270407,12 +270407,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -270425,12 +270425,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -270441,12 +270441,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -270459,12 +270459,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -270475,12 +270475,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -270493,12 +270493,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -270509,12 +270509,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -270527,12 +270527,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -270543,12 +270543,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -270561,12 +270561,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -270577,12 +270577,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -270595,12 +270595,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -270611,12 +270611,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -270629,12 +270629,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = d1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -270645,12 +270645,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -270663,12 +270663,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = d1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -270679,12 +270679,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -270697,12 +270697,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = d5
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -270713,12 +270713,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d5, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -270731,12 +270731,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = d5
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -270747,12 +270747,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d5, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -270765,12 +270765,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -270781,12 +270781,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -270799,12 +270799,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -270815,12 +270815,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -270833,12 +270833,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -270849,12 +270849,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -270867,12 +270867,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -270883,12 +270883,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -270901,12 +270901,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -270917,12 +270917,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -270935,12 +270935,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -270951,12 +270951,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -270969,12 +270969,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -270985,12 +270985,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -271003,12 +271003,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -271019,12 +271019,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -271037,12 +271037,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -271053,12 +271053,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -271071,12 +271071,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -271087,12 +271087,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -271105,12 +271105,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -271121,12 +271121,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -271139,12 +271139,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -271155,12 +271155,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -271173,12 +271173,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -271189,12 +271189,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -271207,12 +271207,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -271223,12 +271223,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -271241,12 +271241,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -271257,12 +271257,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -271275,12 +271275,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -271291,12 +271291,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -271309,12 +271309,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -271325,12 +271325,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -271343,12 +271343,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -271359,12 +271359,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -271377,12 +271377,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -271393,12 +271393,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -271411,12 +271411,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -271427,12 +271427,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -271445,12 +271445,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -271461,12 +271461,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -271479,12 +271479,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -271495,12 +271495,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -271513,12 +271513,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -271529,12 +271529,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -271547,12 +271547,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -271563,12 +271563,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -271581,12 +271581,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -271597,12 +271597,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -271615,12 +271615,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -271631,12 +271631,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -271649,12 +271649,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -271665,12 +271665,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -271683,12 +271683,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -271699,12 +271699,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -271717,12 +271717,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -271733,12 +271733,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -271751,12 +271751,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -271767,12 +271767,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -271785,12 +271785,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -271801,12 +271801,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -271819,12 +271819,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -271835,12 +271835,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -271853,12 +271853,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -271869,12 +271869,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -271887,12 +271887,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -271903,12 +271903,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -271921,12 +271921,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -271937,12 +271937,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -271955,12 +271955,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -271971,12 +271971,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -271989,12 +271989,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -272005,12 +272005,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -272023,12 +272023,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -272039,12 +272039,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -272057,12 +272057,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -272073,12 +272073,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -272091,12 +272091,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -272107,12 +272107,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -272125,12 +272125,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -272141,12 +272141,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -272159,12 +272159,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -272175,12 +272175,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 34, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -272193,12 +272193,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -272209,12 +272209,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 34, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -272227,12 +272227,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 35
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -272243,12 +272243,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 35, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -272261,12 +272261,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 35
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -272277,12 +272277,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 35, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -272295,12 +272295,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 35
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -272311,12 +272311,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 35, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -272329,12 +272329,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -272345,12 +272345,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -272363,12 +272363,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -272379,12 +272379,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -272397,12 +272397,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -272413,12 +272413,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -272431,12 +272431,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -272447,12 +272447,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -272465,12 +272465,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -272481,12 +272481,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -272499,12 +272499,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -272515,12 +272515,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -272533,12 +272533,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -272549,12 +272549,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -272567,12 +272567,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -272583,12 +272583,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -272601,12 +272601,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -272617,12 +272617,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -272635,12 +272635,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -272651,12 +272651,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -272669,12 +272669,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -272685,12 +272685,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -272703,12 +272703,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -272719,12 +272719,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -272737,12 +272737,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -272753,12 +272753,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -272771,12 +272771,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -272787,12 +272787,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -272805,12 +272805,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -272821,12 +272821,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -272839,12 +272839,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -272855,12 +272855,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -272873,12 +272873,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -272889,12 +272889,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -272907,12 +272907,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -272923,12 +272923,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -272941,12 +272941,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -272957,12 +272957,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -272975,12 +272975,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -272991,12 +272991,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -273009,12 +273009,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -273025,12 +273025,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -273043,12 +273043,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -273059,12 +273059,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -273077,12 +273077,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -273093,12 +273093,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -273111,12 +273111,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -273127,12 +273127,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -273145,12 +273145,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -273161,12 +273161,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -273179,12 +273179,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -273195,12 +273195,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -273213,12 +273213,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -273229,12 +273229,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -273247,12 +273247,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -273263,12 +273263,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -273281,12 +273281,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -273297,12 +273297,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -273315,12 +273315,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -273331,12 +273331,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -273349,12 +273349,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -273365,12 +273365,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -273383,12 +273383,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -273399,12 +273399,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -273417,12 +273417,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -273433,12 +273433,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -273451,12 +273451,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -273467,12 +273467,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -273485,12 +273485,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -273501,12 +273501,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -273519,12 +273519,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -273535,12 +273535,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -273553,12 +273553,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -273569,12 +273569,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -273587,12 +273587,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -273603,12 +273603,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -273621,12 +273621,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -273637,12 +273637,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -273655,12 +273655,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -273671,12 +273671,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -273689,12 +273689,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -273705,12 +273705,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -273723,12 +273723,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -273739,12 +273739,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 34, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -273757,12 +273757,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = b1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -273773,12 +273773,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = b1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -273791,12 +273791,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = b1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -273807,12 +273807,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = b1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -273825,12 +273825,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = b5
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -273841,12 +273841,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = b5, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -273859,12 +273859,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = b5
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -273875,12 +273875,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = b5, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -273893,12 +273893,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -273909,12 +273909,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -273927,12 +273927,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -273943,12 +273943,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -273961,12 +273961,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -273977,12 +273977,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -273995,12 +273995,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -274011,12 +274011,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -274029,12 +274029,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -274045,12 +274045,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -274063,12 +274063,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -274079,12 +274079,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -274097,12 +274097,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -274113,12 +274113,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -274131,12 +274131,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -274147,12 +274147,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -274165,12 +274165,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -274181,12 +274181,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -274199,12 +274199,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -274215,12 +274215,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -274233,12 +274233,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -274249,12 +274249,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -274267,12 +274267,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -274283,12 +274283,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -274301,12 +274301,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -274317,12 +274317,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -274335,12 +274335,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -274351,12 +274351,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -274369,12 +274369,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -274385,12 +274385,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -274403,12 +274403,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -274419,12 +274419,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -274437,12 +274437,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -274453,12 +274453,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -274471,12 +274471,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -274487,12 +274487,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -274505,12 +274505,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -274521,12 +274521,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -274539,12 +274539,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -274555,12 +274555,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -274573,12 +274573,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -274589,12 +274589,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -274607,12 +274607,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -274623,12 +274623,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -274641,12 +274641,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -274657,12 +274657,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -274675,12 +274675,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -274691,12 +274691,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -274709,12 +274709,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -274725,12 +274725,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -274743,12 +274743,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -274759,12 +274759,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -274777,12 +274777,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -274793,12 +274793,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -274811,12 +274811,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -274827,12 +274827,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -274845,12 +274845,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -274861,12 +274861,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -274879,12 +274879,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -274895,12 +274895,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -274913,12 +274913,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -274929,12 +274929,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -274947,12 +274947,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -274963,12 +274963,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -274981,12 +274981,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -274997,12 +274997,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -275015,12 +275015,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -275031,12 +275031,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -275049,12 +275049,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -275065,12 +275065,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -275083,12 +275083,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 34
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -275099,12 +275099,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -275117,12 +275117,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -275133,12 +275133,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -275151,12 +275151,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -275167,12 +275167,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -275185,12 +275185,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -275201,12 +275201,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -275219,12 +275219,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -275235,12 +275235,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -275253,12 +275253,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -275269,12 +275269,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 70, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -275287,12 +275287,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -275303,12 +275303,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 70, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -275321,12 +275321,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -275337,12 +275337,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 74, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -275355,12 +275355,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -275371,12 +275371,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 74, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -275389,12 +275389,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 75
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -275405,12 +275405,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 75, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -275423,12 +275423,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 75
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -275439,12 +275439,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 75, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -275457,12 +275457,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -275473,12 +275473,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -275491,12 +275491,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -275507,12 +275507,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -275525,12 +275525,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -275541,12 +275541,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -275559,12 +275559,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -275575,12 +275575,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -275593,12 +275593,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -275609,12 +275609,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -275627,12 +275627,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -275643,12 +275643,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -275661,12 +275661,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -275677,12 +275677,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -275695,12 +275695,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -275711,12 +275711,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -275729,12 +275729,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -275745,12 +275745,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -275763,12 +275763,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -275779,12 +275779,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -275797,12 +275797,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -275813,12 +275813,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -275831,12 +275831,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -275847,12 +275847,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -275865,12 +275865,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -275881,12 +275881,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -275899,12 +275899,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -275915,12 +275915,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -275933,12 +275933,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -275949,12 +275949,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -275967,12 +275967,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -275983,12 +275983,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -276001,12 +276001,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -276017,12 +276017,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -276035,12 +276035,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -276051,12 +276051,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -276069,12 +276069,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -276085,12 +276085,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -276103,12 +276103,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -276119,12 +276119,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -276137,12 +276137,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -276153,12 +276153,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -276171,12 +276171,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -276187,12 +276187,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -276205,12 +276205,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -276221,12 +276221,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -276239,12 +276239,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -276255,12 +276255,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -276273,12 +276273,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -276289,12 +276289,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -276307,12 +276307,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -276323,12 +276323,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -276341,12 +276341,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -276357,12 +276357,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -276375,12 +276375,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -276391,12 +276391,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -276409,12 +276409,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -276425,12 +276425,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -276443,12 +276443,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -276459,12 +276459,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -276477,12 +276477,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -276493,12 +276493,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -276511,12 +276511,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -276527,12 +276527,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -276545,12 +276545,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 30
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -276561,12 +276561,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -276579,12 +276579,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -276595,12 +276595,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -276613,12 +276613,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -276629,12 +276629,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -276647,12 +276647,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -276663,12 +276663,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -276681,12 +276681,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -276697,12 +276697,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -276715,12 +276715,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -276731,12 +276731,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -276749,12 +276749,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -276765,12 +276765,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -276783,12 +276783,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -276799,12 +276799,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -276817,12 +276817,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -276833,12 +276833,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 70, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -276851,12 +276851,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -276867,12 +276867,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -276885,12 +276885,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = f1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -276901,12 +276901,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -276919,12 +276919,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = f1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -276935,12 +276935,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -276953,12 +276953,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = f5
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -276969,12 +276969,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f5, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -276987,12 +276987,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = f5
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -277003,12 +277003,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f5, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -277021,12 +277021,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -277037,12 +277037,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -277055,12 +277055,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -277071,12 +277071,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -277089,12 +277089,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -277105,12 +277105,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -277123,12 +277123,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -277139,12 +277139,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -277157,12 +277157,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -277173,12 +277173,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -277191,12 +277191,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -277207,12 +277207,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -277225,12 +277225,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -277241,12 +277241,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -277259,12 +277259,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -277275,12 +277275,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -277293,12 +277293,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -277309,12 +277309,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -277327,12 +277327,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -277343,12 +277343,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -277361,12 +277361,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -277377,12 +277377,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -277395,12 +277395,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -277411,12 +277411,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -277429,12 +277429,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -277445,12 +277445,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -277463,12 +277463,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -277479,12 +277479,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -277497,12 +277497,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -277513,12 +277513,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -277531,12 +277531,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -277547,12 +277547,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -277565,12 +277565,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -277581,12 +277581,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -277599,12 +277599,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -277615,12 +277615,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -277633,12 +277633,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -277649,12 +277649,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -277667,12 +277667,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -277683,12 +277683,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -277701,12 +277701,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -277717,12 +277717,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -277735,12 +277735,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 74
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -277751,12 +277751,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -277769,12 +277769,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -277785,12 +277785,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -277803,12 +277803,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -277819,12 +277819,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -277837,12 +277837,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -277853,12 +277853,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -277871,12 +277871,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -277887,12 +277887,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -277905,12 +277905,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -277921,12 +277921,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -277939,12 +277939,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -277955,12 +277955,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -277973,12 +277973,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -277989,12 +277989,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -278007,12 +278007,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -278023,12 +278023,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -278041,12 +278041,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -278057,12 +278057,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -278075,12 +278075,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -278091,12 +278091,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -278109,12 +278109,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -278125,12 +278125,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -278143,12 +278143,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -278159,12 +278159,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -278177,12 +278177,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -278193,12 +278193,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -278211,12 +278211,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -278227,12 +278227,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -278245,12 +278245,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -278261,12 +278261,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -278279,12 +278279,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -278295,12 +278295,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -278313,12 +278313,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -278329,12 +278329,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -278347,12 +278347,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -278363,12 +278363,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -278381,12 +278381,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -278397,12 +278397,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -278415,12 +278415,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -278431,12 +278431,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -278449,12 +278449,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -278465,12 +278465,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -278483,12 +278483,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -278499,12 +278499,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -278517,12 +278517,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -278533,12 +278533,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -278551,12 +278551,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -278567,12 +278567,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -278585,12 +278585,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -278601,12 +278601,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -278619,12 +278619,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -278635,12 +278635,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -278653,12 +278653,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -278669,12 +278669,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -278687,12 +278687,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -278703,12 +278703,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -278721,12 +278721,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -278737,12 +278737,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -278755,12 +278755,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -278771,12 +278771,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -278789,12 +278789,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -278805,12 +278805,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -278823,12 +278823,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -278839,12 +278839,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -278857,12 +278857,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -278873,12 +278873,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -278891,12 +278891,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -278907,12 +278907,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -278925,12 +278925,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -278941,12 +278941,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -278959,12 +278959,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -278975,12 +278975,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -278993,12 +278993,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -279009,12 +279009,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -279027,12 +279027,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -279043,12 +279043,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -279061,12 +279061,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -279077,12 +279077,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -279095,12 +279095,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -279111,12 +279111,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -279129,12 +279129,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -279145,12 +279145,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -279163,12 +279163,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -279179,12 +279179,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -279197,12 +279197,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -279213,12 +279213,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -279231,12 +279231,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -279247,12 +279247,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -279265,12 +279265,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -279281,12 +279281,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -279299,12 +279299,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -279315,12 +279315,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -279333,12 +279333,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -279349,12 +279349,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -279367,12 +279367,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -279383,12 +279383,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -279401,12 +279401,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -279417,12 +279417,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -279435,12 +279435,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -279451,12 +279451,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -279469,12 +279469,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -279485,12 +279485,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -279503,12 +279503,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -279519,12 +279519,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -279537,12 +279537,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -279553,12 +279553,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -279571,12 +279571,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -279587,12 +279587,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -279605,12 +279605,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -279621,12 +279621,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -279639,12 +279639,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -279655,12 +279655,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -279673,12 +279673,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -279689,12 +279689,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -279707,12 +279707,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -279723,12 +279723,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -279741,12 +279741,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -279757,12 +279757,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -279775,12 +279775,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -279791,12 +279791,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -279809,12 +279809,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -279825,12 +279825,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -279843,12 +279843,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -279859,12 +279859,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -279877,12 +279877,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -279893,12 +279893,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -279911,12 +279911,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -279927,12 +279927,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -279945,12 +279945,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -279961,12 +279961,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -279979,12 +279979,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -279995,12 +279995,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -280013,12 +280013,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 8d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -280029,12 +280029,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 8d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -280047,12 +280047,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 8d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -280063,12 +280063,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 8d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -280081,12 +280081,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 8d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -280097,12 +280097,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 8d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -280115,12 +280115,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 8d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -280131,12 +280131,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 8d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -280149,12 +280149,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -280165,12 +280165,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -280183,12 +280183,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -280199,12 +280199,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -280217,12 +280217,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -280233,12 +280233,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -280251,12 +280251,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -280267,12 +280267,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -280285,12 +280285,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -280301,12 +280301,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -280319,12 +280319,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -280335,12 +280335,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -280353,12 +280353,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -280369,12 +280369,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -280387,12 +280387,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -280403,12 +280403,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -280421,12 +280421,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -280437,12 +280437,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -280455,12 +280455,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -280471,12 +280471,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -280489,12 +280489,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -280505,12 +280505,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -280523,12 +280523,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -280539,12 +280539,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -280557,12 +280557,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -280573,12 +280573,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -280591,12 +280591,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -280607,12 +280607,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -280625,12 +280625,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -280641,12 +280641,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -280659,12 +280659,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -280675,12 +280675,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -280693,12 +280693,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -280709,12 +280709,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -280727,12 +280727,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -280743,12 +280743,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -280761,12 +280761,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -280777,12 +280777,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -280795,12 +280795,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -280811,12 +280811,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -280829,12 +280829,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -280845,12 +280845,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -280863,12 +280863,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -280879,12 +280879,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -280897,12 +280897,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -280913,12 +280913,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -280931,12 +280931,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -280947,12 +280947,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -280965,12 +280965,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -280981,12 +280981,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -280999,12 +280999,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -281015,12 +281015,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -281033,12 +281033,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -281049,12 +281049,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -281067,12 +281067,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -281083,12 +281083,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -281101,12 +281101,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -281117,12 +281117,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -281135,12 +281135,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -281151,12 +281151,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -281169,12 +281169,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -281185,12 +281185,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -281203,12 +281203,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -281219,12 +281219,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -281237,12 +281237,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -281253,12 +281253,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -281271,12 +281271,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -281287,12 +281287,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -281305,12 +281305,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -281321,12 +281321,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -281339,12 +281339,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -281355,12 +281355,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -281373,12 +281373,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -281389,12 +281389,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -281407,12 +281407,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -281423,12 +281423,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -281441,12 +281441,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -281457,12 +281457,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -281475,12 +281475,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -281491,12 +281491,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -281509,12 +281509,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -281525,12 +281525,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -281543,12 +281543,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -281559,12 +281559,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -281577,12 +281577,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -281593,12 +281593,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -281611,12 +281611,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 4d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -281627,12 +281627,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 4d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -281645,12 +281645,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 4d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -281661,12 +281661,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 4d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -281679,12 +281679,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 4d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -281695,12 +281695,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 4d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -281713,12 +281713,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -281729,12 +281729,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -281747,12 +281747,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -281763,12 +281763,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -281781,12 +281781,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -281797,12 +281797,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -281815,12 +281815,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -281831,12 +281831,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -281849,12 +281849,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -281865,12 +281865,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -281883,12 +281883,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -281899,12 +281899,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -281917,12 +281917,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -281933,12 +281933,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -281951,12 +281951,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -281967,12 +281967,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -281985,12 +281985,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -282001,12 +282001,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -282019,12 +282019,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -282035,12 +282035,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -282053,12 +282053,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -282069,12 +282069,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -282087,12 +282087,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -282103,12 +282103,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -282121,12 +282121,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -282137,12 +282137,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -282155,12 +282155,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -282171,12 +282171,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -282189,12 +282189,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -282205,12 +282205,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -282223,12 +282223,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -282239,12 +282239,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -282257,12 +282257,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -282273,12 +282273,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -282291,12 +282291,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -282307,12 +282307,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -282325,12 +282325,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -282341,12 +282341,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -282359,12 +282359,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -282375,12 +282375,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -282393,12 +282393,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -282409,12 +282409,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -282427,12 +282427,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -282443,12 +282443,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -282461,12 +282461,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -282477,12 +282477,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -282495,12 +282495,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -282511,12 +282511,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -282529,12 +282529,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -282545,12 +282545,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -282563,12 +282563,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -282579,12 +282579,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -282597,12 +282597,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -282613,12 +282613,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -282631,12 +282631,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -282647,12 +282647,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -282665,12 +282665,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -282681,12 +282681,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -282699,12 +282699,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -282715,12 +282715,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -282733,12 +282733,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -282749,12 +282749,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -282767,12 +282767,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -282783,12 +282783,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -282801,12 +282801,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -282817,12 +282817,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -282835,12 +282835,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -282851,12 +282851,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -282869,12 +282869,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -282885,12 +282885,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -282903,12 +282903,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -282919,12 +282919,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -282937,12 +282937,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -282953,12 +282953,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -282971,12 +282971,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -282987,12 +282987,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -283005,12 +283005,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -283021,12 +283021,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -283039,12 +283039,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -283055,12 +283055,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -283073,12 +283073,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -283089,12 +283089,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -283107,12 +283107,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -283123,12 +283123,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -283141,12 +283141,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c5
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -283157,12 +283157,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c5, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -283175,12 +283175,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = cd
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -283191,12 +283191,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = cd, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -283209,12 +283209,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = cd
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -283225,12 +283225,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = cd, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -283243,12 +283243,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = cd
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -283259,12 +283259,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = cd, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -283277,12 +283277,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -283293,12 +283293,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -283311,12 +283311,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -283327,12 +283327,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -283345,12 +283345,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -283361,12 +283361,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -283379,12 +283379,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -283395,12 +283395,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -283413,12 +283413,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -283429,12 +283429,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -283447,12 +283447,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -283463,12 +283463,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -283481,12 +283481,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -283497,12 +283497,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -283515,12 +283515,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -283531,12 +283531,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -283549,12 +283549,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -283565,12 +283565,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -283583,12 +283583,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -283599,12 +283599,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -283617,12 +283617,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -283633,12 +283633,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -283651,12 +283651,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -283667,12 +283667,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -283685,12 +283685,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -283701,12 +283701,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -283719,12 +283719,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -283735,12 +283735,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -283753,12 +283753,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -283769,12 +283769,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -283787,12 +283787,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -283803,12 +283803,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -283821,12 +283821,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -283837,12 +283837,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -283855,12 +283855,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -283871,12 +283871,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -283889,12 +283889,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -283905,12 +283905,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -283923,12 +283923,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -283939,12 +283939,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -283957,12 +283957,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -283973,12 +283973,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -283991,12 +283991,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -284007,12 +284007,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -284025,12 +284025,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -284041,12 +284041,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -284059,12 +284059,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -284075,12 +284075,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -284093,12 +284093,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -284109,12 +284109,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -284127,12 +284127,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -284143,12 +284143,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -284161,12 +284161,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -284177,12 +284177,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -284195,12 +284195,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -284211,12 +284211,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -284229,12 +284229,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -284245,12 +284245,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -284263,12 +284263,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -284279,12 +284279,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -284297,12 +284297,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -284313,12 +284313,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -284331,12 +284331,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -284347,12 +284347,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -284365,12 +284365,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -284381,12 +284381,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -284399,12 +284399,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -284415,12 +284415,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -284433,12 +284433,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -284449,12 +284449,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -284467,12 +284467,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -284483,12 +284483,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -284501,12 +284501,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -284517,12 +284517,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -284535,12 +284535,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -284551,12 +284551,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -284569,12 +284569,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -284585,12 +284585,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -284603,12 +284603,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -284619,12 +284619,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -284637,12 +284637,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -284653,12 +284653,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -284671,12 +284671,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -284687,12 +284687,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -284705,12 +284705,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -284721,12 +284721,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -284739,12 +284739,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 2d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -284755,12 +284755,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 2d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -284773,12 +284773,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 2d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -284789,12 +284789,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 2d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -284807,12 +284807,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 2d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -284823,12 +284823,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 2d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -284841,12 +284841,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -284857,12 +284857,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -284875,12 +284875,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -284891,12 +284891,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -284909,12 +284909,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -284925,12 +284925,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -284943,12 +284943,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -284959,12 +284959,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -284977,12 +284977,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -284993,12 +284993,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -285011,12 +285011,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -285027,12 +285027,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -285045,12 +285045,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -285061,12 +285061,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -285079,12 +285079,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -285095,12 +285095,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -285113,12 +285113,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -285129,12 +285129,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -285147,12 +285147,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -285163,12 +285163,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -285181,12 +285181,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -285197,12 +285197,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -285215,12 +285215,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -285231,12 +285231,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -285249,12 +285249,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -285265,12 +285265,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -285283,12 +285283,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -285299,12 +285299,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -285317,12 +285317,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -285333,12 +285333,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -285351,12 +285351,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -285367,12 +285367,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -285385,12 +285385,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -285401,12 +285401,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -285419,12 +285419,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -285435,12 +285435,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -285453,12 +285453,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -285469,12 +285469,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -285487,12 +285487,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -285503,12 +285503,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -285521,12 +285521,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -285537,12 +285537,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -285555,12 +285555,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -285571,12 +285571,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -285589,12 +285589,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -285605,12 +285605,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -285623,12 +285623,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -285639,12 +285639,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -285657,12 +285657,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -285673,12 +285673,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -285691,12 +285691,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -285707,12 +285707,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -285725,12 +285725,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -285741,12 +285741,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -285759,12 +285759,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -285775,12 +285775,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -285793,12 +285793,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -285809,12 +285809,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -285827,12 +285827,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -285843,12 +285843,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -285861,12 +285861,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -285877,12 +285877,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -285895,12 +285895,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -285911,12 +285911,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -285929,12 +285929,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -285945,12 +285945,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -285963,12 +285963,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -285979,12 +285979,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -285997,12 +285997,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -286013,12 +286013,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -286031,12 +286031,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -286047,12 +286047,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -286065,12 +286065,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -286081,12 +286081,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -286099,12 +286099,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -286115,12 +286115,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -286133,12 +286133,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -286149,12 +286149,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -286167,12 +286167,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -286183,12 +286183,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -286201,12 +286201,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -286217,12 +286217,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -286235,12 +286235,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -286251,12 +286251,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -286269,12 +286269,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 8d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -286285,12 +286285,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 8d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -286303,12 +286303,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 8d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -286319,12 +286319,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 8d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -286337,12 +286337,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = ad
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -286353,12 +286353,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = ad, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -286371,12 +286371,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = ad
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -286387,12 +286387,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = ad, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -286405,12 +286405,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -286421,12 +286421,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -286439,12 +286439,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -286455,12 +286455,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -286473,12 +286473,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -286489,12 +286489,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -286507,12 +286507,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -286523,12 +286523,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -286541,12 +286541,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -286557,12 +286557,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -286575,12 +286575,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -286591,12 +286591,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -286609,12 +286609,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -286625,12 +286625,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -286643,12 +286643,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -286659,12 +286659,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -286677,12 +286677,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -286693,12 +286693,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -286711,12 +286711,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -286727,12 +286727,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -286745,12 +286745,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -286761,12 +286761,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -286779,12 +286779,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -286795,12 +286795,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -286813,12 +286813,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -286829,12 +286829,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -286847,12 +286847,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -286863,12 +286863,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -286881,12 +286881,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -286897,12 +286897,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -286915,12 +286915,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -286931,12 +286931,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -286949,12 +286949,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -286965,12 +286965,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -286983,12 +286983,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -286999,12 +286999,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -287017,12 +287017,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -287033,12 +287033,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -287051,12 +287051,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -287067,12 +287067,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -287085,12 +287085,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -287101,12 +287101,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -287119,12 +287119,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -287135,12 +287135,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -287153,12 +287153,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -287169,12 +287169,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -287187,12 +287187,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -287203,12 +287203,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -287221,12 +287221,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -287237,12 +287237,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -287255,12 +287255,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -287271,12 +287271,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -287289,12 +287289,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -287305,12 +287305,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -287323,12 +287323,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -287339,12 +287339,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -287357,12 +287357,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -287373,12 +287373,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -287391,12 +287391,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -287407,12 +287407,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -287425,12 +287425,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -287441,12 +287441,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -287459,12 +287459,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -287475,12 +287475,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -287493,12 +287493,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -287509,12 +287509,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -287527,12 +287527,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -287543,12 +287543,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -287561,12 +287561,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -287577,12 +287577,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -287595,12 +287595,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -287611,12 +287611,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -287629,12 +287629,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -287645,12 +287645,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -287663,12 +287663,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -287679,12 +287679,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -287697,12 +287697,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -287713,12 +287713,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -287731,12 +287731,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -287747,12 +287747,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -287765,12 +287765,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -287781,12 +287781,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -287799,12 +287799,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -287815,12 +287815,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -287833,12 +287833,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -287849,12 +287849,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 6c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -287867,12 +287867,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -287883,12 +287883,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 6c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -287901,12 +287901,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 6d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -287917,12 +287917,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 6d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -287935,12 +287935,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 6d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -287951,12 +287951,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 6d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -287969,12 +287969,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -287985,12 +287985,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -288003,12 +288003,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -288019,12 +288019,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -288037,12 +288037,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -288053,12 +288053,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -288071,12 +288071,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -288087,12 +288087,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -288105,12 +288105,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -288121,12 +288121,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -288139,12 +288139,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -288155,12 +288155,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -288173,12 +288173,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -288189,12 +288189,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -288207,12 +288207,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -288223,12 +288223,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -288241,12 +288241,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -288257,12 +288257,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -288275,12 +288275,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -288291,12 +288291,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -288309,12 +288309,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -288325,12 +288325,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -288343,12 +288343,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -288359,12 +288359,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -288377,12 +288377,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -288393,12 +288393,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -288411,12 +288411,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -288427,12 +288427,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -288445,12 +288445,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -288461,12 +288461,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -288479,12 +288479,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -288495,12 +288495,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -288513,12 +288513,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -288529,12 +288529,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -288547,12 +288547,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -288563,12 +288563,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -288581,12 +288581,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -288597,12 +288597,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -288615,12 +288615,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -288631,12 +288631,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -288649,12 +288649,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -288665,12 +288665,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -288683,12 +288683,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -288699,12 +288699,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -288717,12 +288717,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -288733,12 +288733,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -288751,12 +288751,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -288767,12 +288767,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -288785,12 +288785,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -288801,12 +288801,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -288819,12 +288819,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -288835,12 +288835,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -288853,12 +288853,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -288869,12 +288869,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -288887,12 +288887,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -288903,12 +288903,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -288921,12 +288921,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -288937,12 +288937,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -288955,12 +288955,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -288971,12 +288971,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -288989,12 +288989,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -289005,12 +289005,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -289023,12 +289023,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -289039,12 +289039,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -289057,12 +289057,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -289073,12 +289073,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -289091,12 +289091,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -289107,12 +289107,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -289125,12 +289125,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -289141,12 +289141,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -289159,12 +289159,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -289175,12 +289175,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -289193,12 +289193,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -289209,12 +289209,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -289227,12 +289227,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -289243,12 +289243,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -289261,12 +289261,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -289277,12 +289277,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -289295,12 +289295,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -289311,12 +289311,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -289329,12 +289329,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -289345,12 +289345,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -289363,12 +289363,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = e1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -289379,12 +289379,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -289397,12 +289397,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = e1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -289413,12 +289413,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -289431,12 +289431,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = ec
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -289447,12 +289447,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = ec, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -289465,12 +289465,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = ed
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -289481,12 +289481,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = ed, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -289499,12 +289499,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = ed
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -289515,12 +289515,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = ed, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -289533,12 +289533,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -289549,12 +289549,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -289567,12 +289567,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -289583,12 +289583,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -289601,12 +289601,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -289617,12 +289617,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -289635,12 +289635,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -289651,12 +289651,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -289669,12 +289669,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -289685,12 +289685,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -289703,12 +289703,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = e1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -289719,12 +289719,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -289737,12 +289737,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = e1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -289753,12 +289753,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -289771,12 +289771,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = e1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -289787,12 +289787,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -289805,12 +289805,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = e1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -289821,12 +289821,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -289839,12 +289839,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = e1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -289855,12 +289855,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -289873,12 +289873,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = e1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -289889,12 +289889,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -289907,12 +289907,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -289923,12 +289923,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -289941,12 +289941,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -289957,12 +289957,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -289975,12 +289975,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -289991,12 +289991,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -290009,12 +290009,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -290025,12 +290025,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -290043,12 +290043,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -290059,12 +290059,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -290077,12 +290077,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -290093,12 +290093,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -290111,12 +290111,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -290127,12 +290127,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -290145,12 +290145,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -290161,12 +290161,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -290179,12 +290179,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -290195,12 +290195,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -290213,12 +290213,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -290229,12 +290229,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -290247,12 +290247,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -290263,12 +290263,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -290281,12 +290281,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -290297,12 +290297,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -290315,12 +290315,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -290331,12 +290331,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -290349,12 +290349,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -290365,12 +290365,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -290383,12 +290383,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -290399,12 +290399,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -290417,12 +290417,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 6c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -290433,12 +290433,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -290451,12 +290451,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -290467,12 +290467,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -290485,12 +290485,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -290501,12 +290501,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -290519,12 +290519,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -290535,12 +290535,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -290553,12 +290553,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -290569,12 +290569,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -290587,12 +290587,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -290603,12 +290603,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -290621,12 +290621,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -290637,12 +290637,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -290655,12 +290655,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -290671,12 +290671,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -290689,12 +290689,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -290705,12 +290705,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -290723,12 +290723,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -290739,12 +290739,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -290757,12 +290757,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -290773,12 +290773,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -290791,12 +290791,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -290807,12 +290807,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -290825,12 +290825,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -290841,12 +290841,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -290859,12 +290859,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -290875,12 +290875,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -290893,12 +290893,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -290909,12 +290909,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -290927,12 +290927,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -290943,12 +290943,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -290961,12 +290961,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -290977,12 +290977,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -290995,12 +290995,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -291011,12 +291011,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -291029,12 +291029,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -291045,12 +291045,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -291063,12 +291063,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -291079,12 +291079,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -291097,12 +291097,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -291113,12 +291113,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -291131,12 +291131,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -291147,12 +291147,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -291165,12 +291165,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -291181,12 +291181,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -291199,12 +291199,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -291215,12 +291215,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -291233,12 +291233,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -291249,12 +291249,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -291267,12 +291267,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -291283,12 +291283,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -291301,12 +291301,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -291317,12 +291317,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -291335,12 +291335,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -291351,12 +291351,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -291369,12 +291369,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -291385,12 +291385,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -291403,12 +291403,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -291419,12 +291419,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -291437,12 +291437,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -291453,12 +291453,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -291471,12 +291471,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -291487,12 +291487,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -291505,12 +291505,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -291521,12 +291521,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -291539,12 +291539,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -291555,12 +291555,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -291573,12 +291573,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -291589,12 +291589,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -291607,12 +291607,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -291623,12 +291623,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -291641,12 +291641,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -291657,12 +291657,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -291675,12 +291675,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -291691,12 +291691,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -291709,12 +291709,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -291725,12 +291725,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -291743,12 +291743,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -291759,12 +291759,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -291777,12 +291777,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -291793,12 +291793,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -291811,12 +291811,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -291827,12 +291827,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -291845,12 +291845,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -291861,12 +291861,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -291879,12 +291879,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -291895,12 +291895,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -291913,12 +291913,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -291929,12 +291929,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -291947,12 +291947,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -291963,12 +291963,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -291981,12 +291981,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -291997,12 +291997,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -292015,12 +292015,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -292031,12 +292031,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -292049,12 +292049,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -292065,12 +292065,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -292083,12 +292083,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -292099,12 +292099,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -292117,12 +292117,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -292133,12 +292133,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -292151,12 +292151,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -292167,12 +292167,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -292185,12 +292185,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -292201,12 +292201,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -292219,12 +292219,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -292235,12 +292235,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -292253,12 +292253,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -292269,12 +292269,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -292287,12 +292287,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -292303,12 +292303,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -292321,12 +292321,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -292337,12 +292337,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -292355,12 +292355,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -292371,12 +292371,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -292389,12 +292389,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -292405,12 +292405,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -292423,12 +292423,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -292439,12 +292439,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -292457,12 +292457,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -292473,12 +292473,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -292491,12 +292491,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -292507,12 +292507,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -292525,12 +292525,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -292541,12 +292541,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -292559,12 +292559,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 9d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -292575,12 +292575,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 9d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -292593,12 +292593,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 9d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -292609,12 +292609,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 9d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -292627,12 +292627,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 9d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -292643,12 +292643,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 9d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -292661,12 +292661,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -292677,12 +292677,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -292695,12 +292695,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -292711,12 +292711,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -292729,12 +292729,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -292745,12 +292745,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -292763,12 +292763,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -292779,12 +292779,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -292797,12 +292797,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -292813,12 +292813,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -292831,12 +292831,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -292847,12 +292847,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -292865,12 +292865,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -292881,12 +292881,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -292899,12 +292899,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -292915,12 +292915,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -292933,12 +292933,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -292949,12 +292949,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -292967,12 +292967,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -292983,12 +292983,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -293001,12 +293001,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -293017,12 +293017,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -293035,12 +293035,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -293051,12 +293051,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -293069,12 +293069,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -293085,12 +293085,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -293103,12 +293103,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -293119,12 +293119,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -293137,12 +293137,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -293153,12 +293153,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -293171,12 +293171,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -293187,12 +293187,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -293205,12 +293205,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -293221,12 +293221,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -293239,12 +293239,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -293255,12 +293255,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -293273,12 +293273,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -293289,12 +293289,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -293307,12 +293307,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -293323,12 +293323,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -293341,12 +293341,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -293357,12 +293357,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -293375,12 +293375,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -293391,12 +293391,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -293409,12 +293409,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -293425,12 +293425,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -293443,12 +293443,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -293459,12 +293459,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -293477,12 +293477,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -293493,12 +293493,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -293511,12 +293511,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -293527,12 +293527,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -293545,12 +293545,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -293561,12 +293561,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -293579,12 +293579,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -293595,12 +293595,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -293613,12 +293613,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -293629,12 +293629,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -293647,12 +293647,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -293663,12 +293663,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -293681,12 +293681,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -293697,12 +293697,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -293715,12 +293715,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -293731,12 +293731,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -293749,12 +293749,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -293765,12 +293765,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -293783,12 +293783,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -293799,12 +293799,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -293817,12 +293817,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -293833,12 +293833,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -293851,12 +293851,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -293867,12 +293867,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -293885,12 +293885,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -293901,12 +293901,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -293919,12 +293919,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -293935,12 +293935,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -293953,12 +293953,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -293969,12 +293969,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -293987,12 +293987,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -294003,12 +294003,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -294021,12 +294021,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -294037,12 +294037,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -294055,12 +294055,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -294071,12 +294071,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -294089,12 +294089,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -294105,12 +294105,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -294123,12 +294123,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -294139,12 +294139,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -294157,12 +294157,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 5d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -294173,12 +294173,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 5d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -294191,12 +294191,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 5d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -294207,12 +294207,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 5d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -294225,12 +294225,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -294241,12 +294241,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -294259,12 +294259,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -294275,12 +294275,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -294293,12 +294293,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -294309,12 +294309,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -294327,12 +294327,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -294343,12 +294343,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -294361,12 +294361,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -294377,12 +294377,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -294395,12 +294395,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -294411,12 +294411,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -294429,12 +294429,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -294445,12 +294445,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -294463,12 +294463,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -294479,12 +294479,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -294497,12 +294497,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -294513,12 +294513,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -294531,12 +294531,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -294547,12 +294547,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -294565,12 +294565,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -294581,12 +294581,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -294599,12 +294599,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -294615,12 +294615,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -294633,12 +294633,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -294649,12 +294649,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -294667,12 +294667,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -294683,12 +294683,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -294701,12 +294701,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -294717,12 +294717,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -294735,12 +294735,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -294751,12 +294751,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -294769,12 +294769,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -294785,12 +294785,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -294803,12 +294803,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -294819,12 +294819,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -294837,12 +294837,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -294853,12 +294853,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -294871,12 +294871,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -294887,12 +294887,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -294905,12 +294905,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -294921,12 +294921,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -294939,12 +294939,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -294955,12 +294955,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -294973,12 +294973,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -294989,12 +294989,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -295007,12 +295007,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -295023,12 +295023,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -295041,12 +295041,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -295057,12 +295057,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -295075,12 +295075,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -295091,12 +295091,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -295109,12 +295109,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -295125,12 +295125,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -295143,12 +295143,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -295159,12 +295159,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -295177,12 +295177,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -295193,12 +295193,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -295211,12 +295211,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -295227,12 +295227,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -295245,12 +295245,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -295261,12 +295261,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -295279,12 +295279,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -295295,12 +295295,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -295313,12 +295313,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -295329,12 +295329,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -295347,12 +295347,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -295363,12 +295363,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -295381,12 +295381,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -295397,12 +295397,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -295415,12 +295415,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -295431,12 +295431,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -295449,12 +295449,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -295465,12 +295465,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -295483,12 +295483,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -295499,12 +295499,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -295517,12 +295517,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -295533,12 +295533,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -295551,12 +295551,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -295567,12 +295567,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -295585,12 +295585,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -295601,12 +295601,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -295619,12 +295619,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -295635,12 +295635,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -295653,12 +295653,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -295669,12 +295669,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -295687,12 +295687,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = dc
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -295703,12 +295703,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = dc, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -295721,12 +295721,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = dd
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -295737,12 +295737,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = dd, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -295755,12 +295755,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = dd
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -295771,12 +295771,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = dd, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -295789,12 +295789,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -295805,12 +295805,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -295823,12 +295823,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -295839,12 +295839,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -295857,12 +295857,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -295873,12 +295873,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -295891,12 +295891,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -295907,12 +295907,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -295925,12 +295925,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -295941,12 +295941,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -295959,12 +295959,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -295975,12 +295975,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -295993,12 +295993,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -296009,12 +296009,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -296027,12 +296027,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -296043,12 +296043,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -296061,12 +296061,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -296077,12 +296077,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -296095,12 +296095,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -296111,12 +296111,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -296129,12 +296129,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -296145,12 +296145,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -296163,12 +296163,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -296179,12 +296179,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -296197,12 +296197,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -296213,12 +296213,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -296231,12 +296231,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -296247,12 +296247,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -296265,12 +296265,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -296281,12 +296281,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -296299,12 +296299,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -296315,12 +296315,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -296333,12 +296333,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -296349,12 +296349,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -296367,12 +296367,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -296383,12 +296383,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -296401,12 +296401,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -296417,12 +296417,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -296435,12 +296435,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -296451,12 +296451,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -296469,12 +296469,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -296485,12 +296485,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -296503,12 +296503,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -296519,12 +296519,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -296537,12 +296537,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -296553,12 +296553,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -296571,12 +296571,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -296587,12 +296587,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -296605,12 +296605,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -296621,12 +296621,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -296639,12 +296639,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -296655,12 +296655,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -296673,12 +296673,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -296689,12 +296689,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -296707,12 +296707,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -296723,12 +296723,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -296741,12 +296741,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -296757,12 +296757,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -296775,12 +296775,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -296791,12 +296791,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -296809,12 +296809,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -296825,12 +296825,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -296843,12 +296843,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -296859,12 +296859,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -296877,12 +296877,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -296893,12 +296893,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -296911,12 +296911,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -296927,12 +296927,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -296945,12 +296945,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -296961,12 +296961,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -296979,12 +296979,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -296995,12 +296995,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -297013,12 +297013,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -297029,12 +297029,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -297047,12 +297047,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -297063,12 +297063,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -297081,12 +297081,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -297097,12 +297097,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -297115,12 +297115,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -297131,12 +297131,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -297149,12 +297149,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -297165,12 +297165,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -297183,12 +297183,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -297199,12 +297199,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -297217,12 +297217,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -297233,12 +297233,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -297251,12 +297251,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 3d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -297267,12 +297267,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -297285,12 +297285,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 3d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -297301,12 +297301,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -297319,12 +297319,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 3d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -297335,12 +297335,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -297353,12 +297353,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -297369,12 +297369,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -297387,12 +297387,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -297403,12 +297403,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -297421,12 +297421,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -297437,12 +297437,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -297455,12 +297455,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -297471,12 +297471,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -297489,12 +297489,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -297505,12 +297505,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -297523,12 +297523,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -297539,12 +297539,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -297557,12 +297557,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -297573,12 +297573,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -297591,12 +297591,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -297607,12 +297607,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -297625,12 +297625,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -297641,12 +297641,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -297659,12 +297659,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -297675,12 +297675,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -297693,12 +297693,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -297709,12 +297709,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -297727,12 +297727,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -297743,12 +297743,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -297761,12 +297761,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -297777,12 +297777,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -297795,12 +297795,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -297811,12 +297811,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -297829,12 +297829,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -297845,12 +297845,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -297863,12 +297863,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -297879,12 +297879,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -297897,12 +297897,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -297913,12 +297913,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -297931,12 +297931,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -297947,12 +297947,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -297965,12 +297965,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -297981,12 +297981,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -297999,12 +297999,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -298015,12 +298015,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -298033,12 +298033,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -298049,12 +298049,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -298067,12 +298067,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -298083,12 +298083,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -298101,12 +298101,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -298117,12 +298117,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -298135,12 +298135,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -298151,12 +298151,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -298169,12 +298169,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -298185,12 +298185,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -298203,12 +298203,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -298219,12 +298219,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -298237,12 +298237,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -298253,12 +298253,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -298271,12 +298271,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -298287,12 +298287,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -298305,12 +298305,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -298321,12 +298321,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -298339,12 +298339,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -298355,12 +298355,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -298373,12 +298373,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -298389,12 +298389,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -298407,12 +298407,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -298423,12 +298423,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -298441,12 +298441,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -298457,12 +298457,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -298475,12 +298475,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -298491,12 +298491,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -298509,12 +298509,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -298525,12 +298525,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -298543,12 +298543,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -298559,12 +298559,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -298577,12 +298577,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -298593,12 +298593,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -298611,12 +298611,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -298627,12 +298627,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -298645,12 +298645,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -298661,12 +298661,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -298679,12 +298679,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -298695,12 +298695,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -298713,12 +298713,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -298729,12 +298729,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -298747,12 +298747,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -298763,12 +298763,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -298781,12 +298781,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -298797,12 +298797,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -298815,12 +298815,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 3d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -298831,12 +298831,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -298849,12 +298849,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = bd
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -298865,12 +298865,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = bd, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -298883,12 +298883,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = bd
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -298899,12 +298899,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = bd, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -298917,12 +298917,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -298933,12 +298933,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -298951,12 +298951,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -298967,12 +298967,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -298985,12 +298985,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -299001,12 +299001,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -299019,12 +299019,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -299035,12 +299035,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -299053,12 +299053,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -299069,12 +299069,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -299087,12 +299087,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -299103,12 +299103,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -299121,12 +299121,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -299137,12 +299137,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -299155,12 +299155,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -299171,12 +299171,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -299189,12 +299189,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -299205,12 +299205,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -299223,12 +299223,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -299239,12 +299239,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -299257,12 +299257,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -299273,12 +299273,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -299291,12 +299291,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -299307,12 +299307,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -299325,12 +299325,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -299341,12 +299341,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -299359,12 +299359,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -299375,12 +299375,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -299393,12 +299393,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -299409,12 +299409,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -299427,12 +299427,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -299443,12 +299443,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -299461,12 +299461,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -299477,12 +299477,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -299495,12 +299495,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -299511,12 +299511,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -299529,12 +299529,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -299545,12 +299545,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -299563,12 +299563,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -299579,12 +299579,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -299597,12 +299597,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -299613,12 +299613,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -299631,12 +299631,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -299647,12 +299647,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -299665,12 +299665,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -299681,12 +299681,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -299699,12 +299699,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -299715,12 +299715,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -299733,12 +299733,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -299749,12 +299749,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -299767,12 +299767,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -299783,12 +299783,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -299801,12 +299801,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -299817,12 +299817,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -299835,12 +299835,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -299851,12 +299851,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -299869,12 +299869,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -299885,12 +299885,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -299903,12 +299903,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -299919,12 +299919,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -299937,12 +299937,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -299953,12 +299953,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -299971,12 +299971,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -299987,12 +299987,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -300005,12 +300005,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -300021,12 +300021,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -300039,12 +300039,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -300055,12 +300055,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -300073,12 +300073,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -300089,12 +300089,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -300107,12 +300107,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -300123,12 +300123,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -300141,12 +300141,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -300157,12 +300157,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -300175,12 +300175,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -300191,12 +300191,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -300209,12 +300209,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -300225,12 +300225,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -300243,12 +300243,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -300259,12 +300259,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -300277,12 +300277,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -300293,12 +300293,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -300311,12 +300311,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -300327,12 +300327,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -300345,12 +300345,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -300361,12 +300361,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 7c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -300379,12 +300379,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -300395,12 +300395,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 7c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -300413,12 +300413,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 7d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -300429,12 +300429,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 7d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -300447,12 +300447,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 7d
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -300463,12 +300463,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 7d, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -300481,12 +300481,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -300497,12 +300497,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -300515,12 +300515,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -300531,12 +300531,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -300549,12 +300549,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -300565,12 +300565,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -300583,12 +300583,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -300599,12 +300599,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -300617,12 +300617,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -300633,12 +300633,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -300651,12 +300651,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -300667,12 +300667,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -300685,12 +300685,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -300701,12 +300701,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -300719,12 +300719,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -300735,12 +300735,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -300753,12 +300753,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -300769,12 +300769,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -300787,12 +300787,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -300803,12 +300803,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -300821,12 +300821,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -300837,12 +300837,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -300855,12 +300855,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -300871,12 +300871,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -300889,12 +300889,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -300905,12 +300905,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -300923,12 +300923,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -300939,12 +300939,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -300957,12 +300957,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -300973,12 +300973,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -300991,12 +300991,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -301007,12 +301007,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -301025,12 +301025,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -301041,12 +301041,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -301059,12 +301059,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -301075,12 +301075,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -301093,12 +301093,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -301109,12 +301109,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -301127,12 +301127,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -301143,12 +301143,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -301161,12 +301161,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -301177,12 +301177,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -301195,12 +301195,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -301211,12 +301211,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -301229,12 +301229,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -301245,12 +301245,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -301263,12 +301263,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -301279,12 +301279,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -301297,12 +301297,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -301313,12 +301313,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -301331,12 +301331,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -301347,12 +301347,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -301365,12 +301365,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -301381,12 +301381,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -301399,12 +301399,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -301415,12 +301415,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -301433,12 +301433,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -301449,12 +301449,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -301467,12 +301467,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -301483,12 +301483,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -301501,12 +301501,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -301517,12 +301517,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -301535,12 +301535,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -301551,12 +301551,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -301569,12 +301569,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -301585,12 +301585,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -301603,12 +301603,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -301619,12 +301619,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -301637,12 +301637,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -301653,12 +301653,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -301671,12 +301671,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -301687,12 +301687,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -301705,12 +301705,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -301721,12 +301721,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -301739,12 +301739,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -301755,12 +301755,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -301773,12 +301773,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -301789,12 +301789,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -301807,12 +301807,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -301823,12 +301823,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -301841,12 +301841,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 1c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -301857,12 +301857,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -301875,12 +301875,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -301891,12 +301891,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -301909,12 +301909,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -301925,12 +301925,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 7c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -301943,12 +301943,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = fc
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -301959,12 +301959,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = fc, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -301977,12 +301977,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = fd
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -301993,12 +301993,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = fd, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -302011,12 +302011,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = fd
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -302027,12 +302027,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = fd, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -302045,12 +302045,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -302061,12 +302061,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -302079,12 +302079,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -302095,12 +302095,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -302113,12 +302113,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -302129,12 +302129,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -302147,12 +302147,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -302163,12 +302163,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -302181,12 +302181,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -302197,12 +302197,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -302215,12 +302215,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -302231,12 +302231,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -302249,12 +302249,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -302265,12 +302265,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -302283,12 +302283,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -302299,12 +302299,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -302317,12 +302317,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -302333,12 +302333,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -302351,12 +302351,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -302367,12 +302367,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -302385,12 +302385,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -302401,12 +302401,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -302419,12 +302419,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -302435,12 +302435,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -302453,12 +302453,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -302469,12 +302469,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -302487,12 +302487,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -302503,12 +302503,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -302521,12 +302521,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -302537,12 +302537,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -302555,12 +302555,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -302571,12 +302571,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -302589,12 +302589,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -302605,12 +302605,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -302623,12 +302623,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -302639,12 +302639,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -302657,12 +302657,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -302673,12 +302673,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -302691,12 +302691,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -302707,12 +302707,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -302725,12 +302725,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 7c
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -302741,12 +302741,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -302759,12 +302759,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = fc
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -302775,12 +302775,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -302793,12 +302793,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = fc
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -302809,12 +302809,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -302827,12 +302827,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = fc
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -302843,12 +302843,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -302861,12 +302861,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = fc
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -302877,12 +302877,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -302895,12 +302895,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = fc
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -302911,12 +302911,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -302929,12 +302929,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = fc
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -302945,12 +302945,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -302963,12 +302963,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -302979,12 +302979,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -302997,12 +302997,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -303013,12 +303013,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -303031,12 +303031,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -303047,12 +303047,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -303065,12 +303065,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -303081,12 +303081,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -303099,12 +303099,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -303115,12 +303115,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -303133,12 +303133,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -303149,12 +303149,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -303167,12 +303167,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -303183,12 +303183,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -303201,12 +303201,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -303217,12 +303217,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -303235,12 +303235,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -303251,12 +303251,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -303269,12 +303269,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -303285,12 +303285,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -303303,12 +303303,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -303319,12 +303319,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -303337,12 +303337,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -303353,12 +303353,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -303371,12 +303371,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -303387,12 +303387,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -303405,12 +303405,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -303421,12 +303421,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -303439,12 +303439,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -303455,12 +303455,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -303473,12 +303473,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -303489,12 +303489,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -303507,12 +303507,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -303523,12 +303523,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -303541,12 +303541,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -303557,12 +303557,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -303575,12 +303575,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -303591,12 +303591,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -303609,12 +303609,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -303625,12 +303625,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -303643,12 +303643,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -303659,12 +303659,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -303677,12 +303677,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -303693,12 +303693,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -303711,12 +303711,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -303727,12 +303727,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -303745,12 +303745,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -303761,12 +303761,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -303779,12 +303779,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -303795,12 +303795,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -303813,12 +303813,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -303829,12 +303829,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -303847,12 +303847,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -303863,12 +303863,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -303881,12 +303881,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -303897,12 +303897,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -303915,12 +303915,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -303931,12 +303931,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -303949,12 +303949,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -303965,12 +303965,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -303983,12 +303983,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -303999,12 +303999,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -304017,12 +304017,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -304033,12 +304033,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -304051,12 +304051,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -304067,12 +304067,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -304085,12 +304085,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -304101,12 +304101,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -304119,12 +304119,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -304135,12 +304135,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -304153,12 +304153,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -304169,12 +304169,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -304187,12 +304187,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -304203,12 +304203,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -304221,12 +304221,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -304237,12 +304237,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -304255,12 +304255,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -304271,12 +304271,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -304289,12 +304289,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -304305,12 +304305,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -304323,12 +304323,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -304339,12 +304339,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -304357,12 +304357,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -304373,12 +304373,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -304391,12 +304391,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -304407,12 +304407,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -304425,12 +304425,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -304441,12 +304441,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -304459,12 +304459,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -304475,12 +304475,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -304493,12 +304493,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -304509,12 +304509,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -304527,12 +304527,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -304543,12 +304543,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -304561,12 +304561,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -304577,12 +304577,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -304595,12 +304595,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -304611,12 +304611,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -304629,12 +304629,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -304645,12 +304645,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -304663,12 +304663,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -304679,12 +304679,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -304697,12 +304697,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -304713,12 +304713,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -304731,12 +304731,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -304747,12 +304747,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -304765,12 +304765,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -304781,12 +304781,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -304799,12 +304799,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -304815,12 +304815,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -304833,12 +304833,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -304849,12 +304849,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -304867,12 +304867,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -304883,12 +304883,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -304901,12 +304901,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -304917,12 +304917,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -304935,12 +304935,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -304951,12 +304951,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -304969,12 +304969,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -304985,12 +304985,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 83, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -305003,12 +305003,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -305019,12 +305019,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 83, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -305037,12 +305037,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -305053,12 +305053,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 83, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -305071,12 +305071,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -305087,12 +305087,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 83, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -305105,12 +305105,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -305121,12 +305121,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 83, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -305139,12 +305139,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -305155,12 +305155,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 83, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -305173,12 +305173,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -305189,12 +305189,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -305207,12 +305207,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -305223,12 +305223,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -305241,12 +305241,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -305257,12 +305257,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -305275,12 +305275,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -305291,12 +305291,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -305309,12 +305309,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -305325,12 +305325,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -305343,12 +305343,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -305359,12 +305359,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -305377,12 +305377,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -305393,12 +305393,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -305411,12 +305411,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -305427,12 +305427,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -305445,12 +305445,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -305461,12 +305461,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -305479,12 +305479,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -305495,12 +305495,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -305513,12 +305513,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -305529,12 +305529,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -305547,12 +305547,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -305563,12 +305563,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -305581,12 +305581,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -305597,12 +305597,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -305615,12 +305615,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -305631,12 +305631,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -305649,12 +305649,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -305665,12 +305665,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -305683,12 +305683,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -305699,12 +305699,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -305717,12 +305717,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -305733,12 +305733,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -305751,12 +305751,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -305767,12 +305767,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -305785,12 +305785,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -305801,12 +305801,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -305819,12 +305819,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -305835,12 +305835,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -305853,12 +305853,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -305869,12 +305869,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -305887,12 +305887,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -305903,12 +305903,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -305921,12 +305921,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -305937,12 +305937,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -305955,12 +305955,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -305971,12 +305971,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -305989,12 +305989,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -306005,12 +306005,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -306023,12 +306023,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -306039,12 +306039,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -306057,12 +306057,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -306073,12 +306073,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -306091,12 +306091,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -306107,12 +306107,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -306125,12 +306125,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -306141,12 +306141,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -306159,12 +306159,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -306175,12 +306175,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -306193,12 +306193,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -306209,12 +306209,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -306227,12 +306227,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -306243,12 +306243,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -306261,12 +306261,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -306277,12 +306277,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -306295,12 +306295,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -306311,12 +306311,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -306329,12 +306329,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -306345,12 +306345,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -306363,12 +306363,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -306379,12 +306379,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -306397,12 +306397,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -306413,12 +306413,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -306431,12 +306431,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -306447,12 +306447,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -306465,12 +306465,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -306481,12 +306481,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -306499,12 +306499,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -306515,12 +306515,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -306533,12 +306533,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -306549,12 +306549,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -306567,12 +306567,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -306583,12 +306583,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 43, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -306601,12 +306601,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -306617,12 +306617,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 43, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -306635,12 +306635,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -306651,12 +306651,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 43, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -306669,12 +306669,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -306685,12 +306685,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 43, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -306703,12 +306703,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -306719,12 +306719,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 43, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -306737,12 +306737,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -306753,12 +306753,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -306771,12 +306771,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -306787,12 +306787,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -306805,12 +306805,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -306821,12 +306821,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -306839,12 +306839,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -306855,12 +306855,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -306873,12 +306873,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -306889,12 +306889,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -306907,12 +306907,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -306923,12 +306923,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -306941,12 +306941,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -306957,12 +306957,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -306975,12 +306975,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -306991,12 +306991,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -307009,12 +307009,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -307025,12 +307025,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -307043,12 +307043,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -307059,12 +307059,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -307077,12 +307077,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -307093,12 +307093,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -307111,12 +307111,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -307127,12 +307127,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -307145,12 +307145,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -307161,12 +307161,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -307179,12 +307179,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -307195,12 +307195,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -307213,12 +307213,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -307229,12 +307229,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -307247,12 +307247,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -307263,12 +307263,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -307281,12 +307281,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -307297,12 +307297,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -307315,12 +307315,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -307331,12 +307331,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -307349,12 +307349,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -307365,12 +307365,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -307383,12 +307383,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -307399,12 +307399,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -307417,12 +307417,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -307433,12 +307433,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -307451,12 +307451,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -307467,12 +307467,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -307485,12 +307485,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -307501,12 +307501,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -307519,12 +307519,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -307535,12 +307535,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -307553,12 +307553,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -307569,12 +307569,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -307587,12 +307587,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -307603,12 +307603,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -307621,12 +307621,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -307637,12 +307637,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -307655,12 +307655,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -307671,12 +307671,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -307689,12 +307689,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -307705,12 +307705,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -307723,12 +307723,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -307739,12 +307739,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -307757,12 +307757,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -307773,12 +307773,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -307791,12 +307791,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -307807,12 +307807,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -307825,12 +307825,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -307841,12 +307841,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -307859,12 +307859,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -307875,12 +307875,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -307893,12 +307893,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -307909,12 +307909,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -307927,12 +307927,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -307943,12 +307943,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -307961,12 +307961,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -307977,12 +307977,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -307995,12 +307995,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -308011,12 +308011,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -308029,12 +308029,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -308045,12 +308045,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -308063,12 +308063,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -308079,12 +308079,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -308097,12 +308097,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -308113,12 +308113,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -308131,12 +308131,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -308147,12 +308147,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c3, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -308165,12 +308165,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -308181,12 +308181,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c3, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -308199,12 +308199,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -308215,12 +308215,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c3, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -308233,12 +308233,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -308249,12 +308249,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c3, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -308267,12 +308267,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -308283,12 +308283,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c3, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -308301,12 +308301,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -308317,12 +308317,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -308335,12 +308335,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -308351,12 +308351,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -308369,12 +308369,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -308385,12 +308385,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -308403,12 +308403,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -308419,12 +308419,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -308437,12 +308437,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -308453,12 +308453,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -308471,12 +308471,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -308487,12 +308487,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -308505,12 +308505,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -308521,12 +308521,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -308539,12 +308539,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -308555,12 +308555,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -308573,12 +308573,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -308589,12 +308589,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -308607,12 +308607,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -308623,12 +308623,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -308641,12 +308641,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -308657,12 +308657,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -308675,12 +308675,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -308691,12 +308691,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -308709,12 +308709,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -308725,12 +308725,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -308743,12 +308743,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -308759,12 +308759,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -308777,12 +308777,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -308793,12 +308793,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -308811,12 +308811,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -308827,12 +308827,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -308845,12 +308845,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -308861,12 +308861,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -308879,12 +308879,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -308895,12 +308895,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -308913,12 +308913,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -308929,12 +308929,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -308947,12 +308947,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -308963,12 +308963,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -308981,12 +308981,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -308997,12 +308997,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -309015,12 +309015,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -309031,12 +309031,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -309049,12 +309049,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -309065,12 +309065,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -309083,12 +309083,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -309099,12 +309099,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -309117,12 +309117,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -309133,12 +309133,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -309151,12 +309151,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -309167,12 +309167,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -309185,12 +309185,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -309201,12 +309201,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -309219,12 +309219,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -309235,12 +309235,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -309253,12 +309253,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -309269,12 +309269,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -309287,12 +309287,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -309303,12 +309303,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -309321,12 +309321,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -309337,12 +309337,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -309355,12 +309355,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -309371,12 +309371,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -309389,12 +309389,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -309405,12 +309405,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -309423,12 +309423,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -309439,12 +309439,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -309457,12 +309457,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -309473,12 +309473,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -309491,12 +309491,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -309507,12 +309507,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -309525,12 +309525,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -309541,12 +309541,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -309559,12 +309559,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -309575,12 +309575,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -309593,12 +309593,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -309609,12 +309609,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -309627,12 +309627,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -309643,12 +309643,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -309661,12 +309661,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -309677,12 +309677,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -309695,12 +309695,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -309711,12 +309711,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -309729,12 +309729,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -309745,12 +309745,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 23, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -309763,12 +309763,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -309779,12 +309779,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 23, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -309797,12 +309797,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -309813,12 +309813,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 23, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -309831,12 +309831,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -309847,12 +309847,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 23, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -309865,12 +309865,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -309881,12 +309881,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -309899,12 +309899,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -309915,12 +309915,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -309933,12 +309933,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -309949,12 +309949,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -309967,12 +309967,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -309983,12 +309983,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -310001,12 +310001,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -310017,12 +310017,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -310035,12 +310035,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -310051,12 +310051,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -310069,12 +310069,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -310085,12 +310085,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -310103,12 +310103,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -310119,12 +310119,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -310137,12 +310137,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -310153,12 +310153,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -310171,12 +310171,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -310187,12 +310187,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -310205,12 +310205,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -310221,12 +310221,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -310239,12 +310239,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -310255,12 +310255,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -310273,12 +310273,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -310289,12 +310289,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -310307,12 +310307,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -310323,12 +310323,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -310341,12 +310341,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -310357,12 +310357,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -310375,12 +310375,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -310391,12 +310391,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -310409,12 +310409,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -310425,12 +310425,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -310443,12 +310443,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -310459,12 +310459,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -310477,12 +310477,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -310493,12 +310493,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -310511,12 +310511,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -310527,12 +310527,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -310545,12 +310545,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -310561,12 +310561,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -310579,12 +310579,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -310595,12 +310595,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -310613,12 +310613,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -310629,12 +310629,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -310647,12 +310647,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -310663,12 +310663,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -310681,12 +310681,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -310697,12 +310697,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -310715,12 +310715,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -310731,12 +310731,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -310749,12 +310749,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -310765,12 +310765,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -310783,12 +310783,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -310799,12 +310799,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -310817,12 +310817,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -310833,12 +310833,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -310851,12 +310851,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -310867,12 +310867,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -310885,12 +310885,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -310901,12 +310901,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -310919,12 +310919,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -310935,12 +310935,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -310953,12 +310953,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -310969,12 +310969,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -310987,12 +310987,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -311003,12 +311003,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -311021,12 +311021,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -311037,12 +311037,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -311055,12 +311055,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -311071,12 +311071,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -311089,12 +311089,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -311105,12 +311105,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -311123,12 +311123,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -311139,12 +311139,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -311157,12 +311157,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -311173,12 +311173,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -311191,12 +311191,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -311207,12 +311207,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -311225,12 +311225,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -311241,12 +311241,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 83, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -311259,12 +311259,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -311275,12 +311275,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 83, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -311293,12 +311293,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = a3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -311309,12 +311309,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a3, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -311327,12 +311327,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = a3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -311343,12 +311343,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a3, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -311361,12 +311361,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = a3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -311377,12 +311377,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a3, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -311395,12 +311395,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = a3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -311411,12 +311411,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a3, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -311429,12 +311429,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -311445,12 +311445,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -311463,12 +311463,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -311479,12 +311479,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -311497,12 +311497,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -311513,12 +311513,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -311531,12 +311531,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -311547,12 +311547,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -311565,12 +311565,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -311581,12 +311581,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -311599,12 +311599,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -311615,12 +311615,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -311633,12 +311633,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -311649,12 +311649,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -311667,12 +311667,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -311683,12 +311683,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -311701,12 +311701,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -311717,12 +311717,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -311735,12 +311735,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -311751,12 +311751,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -311769,12 +311769,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -311785,12 +311785,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -311803,12 +311803,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -311819,12 +311819,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -311837,12 +311837,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -311853,12 +311853,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -311871,12 +311871,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -311887,12 +311887,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -311905,12 +311905,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -311921,12 +311921,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -311939,12 +311939,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -311955,12 +311955,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -311973,12 +311973,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -311989,12 +311989,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -312007,12 +312007,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -312023,12 +312023,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -312041,12 +312041,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -312057,12 +312057,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -312075,12 +312075,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -312091,12 +312091,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -312109,12 +312109,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -312125,12 +312125,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -312143,12 +312143,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -312159,12 +312159,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -312177,12 +312177,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -312193,12 +312193,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -312211,12 +312211,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -312227,12 +312227,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -312245,12 +312245,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -312261,12 +312261,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -312279,12 +312279,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -312295,12 +312295,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -312313,12 +312313,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -312329,12 +312329,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -312347,12 +312347,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -312363,12 +312363,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -312381,12 +312381,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -312397,12 +312397,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -312415,12 +312415,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -312431,12 +312431,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -312449,12 +312449,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -312465,12 +312465,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -312483,12 +312483,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -312499,12 +312499,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -312517,12 +312517,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -312533,12 +312533,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -312551,12 +312551,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -312567,12 +312567,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -312585,12 +312585,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -312601,12 +312601,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -312619,12 +312619,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -312635,12 +312635,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -312653,12 +312653,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -312669,12 +312669,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -312687,12 +312687,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -312703,12 +312703,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -312721,12 +312721,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -312737,12 +312737,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -312755,12 +312755,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -312771,12 +312771,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -312789,12 +312789,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -312805,12 +312805,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -312823,12 +312823,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 61
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -312839,12 +312839,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 61, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -312857,12 +312857,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 63
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -312873,12 +312873,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 63, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -312891,12 +312891,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 63
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -312907,12 +312907,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 63, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -312925,12 +312925,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 63
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -312941,12 +312941,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 63, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -312959,12 +312959,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 63
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -312975,12 +312975,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 63, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -312993,12 +312993,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -313009,12 +313009,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -313027,12 +313027,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -313043,12 +313043,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -313061,12 +313061,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -313077,12 +313077,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -313095,12 +313095,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -313111,12 +313111,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -313129,12 +313129,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -313145,12 +313145,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -313163,12 +313163,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -313179,12 +313179,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -313197,12 +313197,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -313213,12 +313213,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -313231,12 +313231,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -313247,12 +313247,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -313265,12 +313265,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -313281,12 +313281,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -313299,12 +313299,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -313315,12 +313315,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -313333,12 +313333,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -313349,12 +313349,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -313367,12 +313367,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -313383,12 +313383,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -313401,12 +313401,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -313417,12 +313417,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -313435,12 +313435,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -313451,12 +313451,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -313469,12 +313469,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -313485,12 +313485,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -313503,12 +313503,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -313519,12 +313519,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -313537,12 +313537,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -313553,12 +313553,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -313571,12 +313571,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -313587,12 +313587,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -313605,12 +313605,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -313621,12 +313621,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -313639,12 +313639,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -313655,12 +313655,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -313673,12 +313673,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -313689,12 +313689,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -313707,12 +313707,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -313723,12 +313723,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -313741,12 +313741,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -313757,12 +313757,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -313775,12 +313775,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -313791,12 +313791,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -313809,12 +313809,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -313825,12 +313825,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -313843,12 +313843,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -313859,12 +313859,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -313877,12 +313877,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -313893,12 +313893,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -313911,12 +313911,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -313927,12 +313927,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -313945,12 +313945,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -313961,12 +313961,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -313979,12 +313979,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -313995,12 +313995,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -314013,12 +314013,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -314029,12 +314029,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -314047,12 +314047,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -314063,12 +314063,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -314081,12 +314081,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -314097,12 +314097,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -314115,12 +314115,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -314131,12 +314131,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -314149,12 +314149,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -314165,12 +314165,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -314183,12 +314183,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -314199,12 +314199,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -314217,12 +314217,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -314233,12 +314233,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -314251,12 +314251,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -314267,12 +314267,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -314285,12 +314285,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -314301,12 +314301,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -314319,12 +314319,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -314335,12 +314335,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -314353,12 +314353,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -314369,12 +314369,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -314387,12 +314387,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = e1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -314403,12 +314403,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -314421,12 +314421,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = e3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -314437,12 +314437,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e3, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -314455,12 +314455,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = e3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -314471,12 +314471,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e3, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -314489,12 +314489,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = e3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -314505,12 +314505,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e3, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -314523,12 +314523,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = e3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -314539,12 +314539,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e3, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -314557,12 +314557,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -314573,12 +314573,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -314591,12 +314591,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -314607,12 +314607,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -314625,12 +314625,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -314641,12 +314641,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -314659,12 +314659,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -314675,12 +314675,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -314693,12 +314693,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -314709,12 +314709,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -314727,12 +314727,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -314743,12 +314743,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -314761,12 +314761,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -314777,12 +314777,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -314795,12 +314795,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -314811,12 +314811,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -314829,12 +314829,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -314845,12 +314845,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -314863,12 +314863,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -314879,12 +314879,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -314897,12 +314897,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -314913,12 +314913,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -314931,12 +314931,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -314947,12 +314947,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -314965,12 +314965,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -314981,12 +314981,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -314999,12 +314999,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -315015,12 +315015,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -315033,12 +315033,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -315049,12 +315049,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -315067,12 +315067,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -315083,12 +315083,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -315101,12 +315101,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -315117,12 +315117,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -315135,12 +315135,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -315151,12 +315151,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -315169,12 +315169,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -315185,12 +315185,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -315203,12 +315203,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -315219,12 +315219,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -315237,12 +315237,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -315253,12 +315253,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -315271,12 +315271,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -315287,12 +315287,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -315305,12 +315305,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -315321,12 +315321,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -315339,12 +315339,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -315355,12 +315355,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -315373,12 +315373,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -315389,12 +315389,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -315407,12 +315407,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -315423,12 +315423,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -315441,12 +315441,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -315457,12 +315457,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -315475,12 +315475,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -315491,12 +315491,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -315509,12 +315509,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -315525,12 +315525,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -315543,12 +315543,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -315559,12 +315559,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -315577,12 +315577,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -315593,12 +315593,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -315611,12 +315611,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -315627,12 +315627,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -315645,12 +315645,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -315661,12 +315661,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -315679,12 +315679,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -315695,12 +315695,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -315713,12 +315713,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -315729,12 +315729,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -315747,12 +315747,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -315763,12 +315763,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -315781,12 +315781,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -315797,12 +315797,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -315815,12 +315815,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -315831,12 +315831,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -315849,12 +315849,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -315865,12 +315865,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -315883,12 +315883,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -315899,12 +315899,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -315917,12 +315917,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -315933,12 +315933,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -315951,12 +315951,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -315967,12 +315967,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -315985,12 +315985,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 13
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -316001,12 +316001,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 13, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -316019,12 +316019,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 13
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -316035,12 +316035,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 13, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -316053,12 +316053,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 13
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -316069,12 +316069,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 13, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -316087,12 +316087,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 13
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -316103,12 +316103,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 13, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -316121,12 +316121,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -316137,12 +316137,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -316155,12 +316155,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -316171,12 +316171,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -316189,12 +316189,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -316205,12 +316205,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -316223,12 +316223,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -316239,12 +316239,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -316257,12 +316257,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -316273,12 +316273,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -316291,12 +316291,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -316307,12 +316307,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -316325,12 +316325,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -316341,12 +316341,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -316359,12 +316359,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -316375,12 +316375,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -316393,12 +316393,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -316409,12 +316409,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -316427,12 +316427,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -316443,12 +316443,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -316461,12 +316461,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -316477,12 +316477,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -316495,12 +316495,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -316511,12 +316511,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -316529,12 +316529,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -316545,12 +316545,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -316563,12 +316563,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -316579,12 +316579,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -316597,12 +316597,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -316613,12 +316613,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -316631,12 +316631,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -316647,12 +316647,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -316665,12 +316665,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -316681,12 +316681,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -316699,12 +316699,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -316715,12 +316715,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -316733,12 +316733,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -316749,12 +316749,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -316767,12 +316767,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -316783,12 +316783,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -316801,12 +316801,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -316817,12 +316817,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -316835,12 +316835,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -316851,12 +316851,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -316869,12 +316869,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -316885,12 +316885,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -316903,12 +316903,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -316919,12 +316919,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -316937,12 +316937,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -316953,12 +316953,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -316971,12 +316971,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -316987,12 +316987,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -317005,12 +317005,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -317021,12 +317021,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -317039,12 +317039,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -317055,12 +317055,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -317073,12 +317073,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -317089,12 +317089,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -317107,12 +317107,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -317123,12 +317123,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -317141,12 +317141,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -317157,12 +317157,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -317175,12 +317175,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -317191,12 +317191,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -317209,12 +317209,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -317225,12 +317225,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -317243,12 +317243,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -317259,12 +317259,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -317277,12 +317277,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -317293,12 +317293,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -317311,12 +317311,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -317327,12 +317327,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -317345,12 +317345,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -317361,12 +317361,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -317379,12 +317379,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -317395,12 +317395,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -317413,12 +317413,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -317429,12 +317429,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -317447,12 +317447,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -317463,12 +317463,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -317481,12 +317481,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -317497,12 +317497,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 83, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -317515,12 +317515,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -317531,12 +317531,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 83, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -317549,12 +317549,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -317565,12 +317565,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 83, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -317583,12 +317583,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 93
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -317599,12 +317599,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 93, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -317617,12 +317617,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 93
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -317633,12 +317633,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 93, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -317651,12 +317651,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 93
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -317667,12 +317667,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 93, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -317685,12 +317685,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -317701,12 +317701,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -317719,12 +317719,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -317735,12 +317735,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -317753,12 +317753,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -317769,12 +317769,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -317787,12 +317787,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -317803,12 +317803,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -317821,12 +317821,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -317837,12 +317837,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -317855,12 +317855,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -317871,12 +317871,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -317889,12 +317889,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -317905,12 +317905,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -317923,12 +317923,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -317939,12 +317939,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -317957,12 +317957,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -317973,12 +317973,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -317991,12 +317991,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -318007,12 +318007,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -318025,12 +318025,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -318041,12 +318041,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -318059,12 +318059,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -318075,12 +318075,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -318093,12 +318093,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -318109,12 +318109,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -318127,12 +318127,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -318143,12 +318143,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -318161,12 +318161,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -318177,12 +318177,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -318195,12 +318195,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -318211,12 +318211,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -318229,12 +318229,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -318245,12 +318245,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -318263,12 +318263,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -318279,12 +318279,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -318297,12 +318297,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -318313,12 +318313,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -318331,12 +318331,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -318347,12 +318347,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -318365,12 +318365,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -318381,12 +318381,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -318399,12 +318399,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -318415,12 +318415,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -318433,12 +318433,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -318449,12 +318449,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -318467,12 +318467,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -318483,12 +318483,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -318501,12 +318501,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -318517,12 +318517,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -318535,12 +318535,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -318551,12 +318551,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -318569,12 +318569,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -318585,12 +318585,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -318603,12 +318603,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -318619,12 +318619,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -318637,12 +318637,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -318653,12 +318653,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -318671,12 +318671,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -318687,12 +318687,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -318705,12 +318705,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -318721,12 +318721,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -318739,12 +318739,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -318755,12 +318755,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -318773,12 +318773,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -318789,12 +318789,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -318807,12 +318807,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -318823,12 +318823,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -318841,12 +318841,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -318857,12 +318857,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -318875,12 +318875,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -318891,12 +318891,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -318909,12 +318909,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -318925,12 +318925,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -318943,12 +318943,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -318959,12 +318959,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -318977,12 +318977,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -318993,12 +318993,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -319011,12 +319011,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -319027,12 +319027,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -319045,12 +319045,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -319061,12 +319061,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -319079,12 +319079,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -319095,12 +319095,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 43, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -319113,12 +319113,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -319129,12 +319129,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 43, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -319147,12 +319147,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 53
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -319163,12 +319163,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 53, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -319181,12 +319181,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 53
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -319197,12 +319197,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 53, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -319215,12 +319215,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 53
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -319231,12 +319231,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 53, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -319249,12 +319249,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -319265,12 +319265,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -319283,12 +319283,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -319299,12 +319299,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -319317,12 +319317,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -319333,12 +319333,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -319351,12 +319351,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -319367,12 +319367,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -319385,12 +319385,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -319401,12 +319401,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -319419,12 +319419,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -319435,12 +319435,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -319453,12 +319453,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -319469,12 +319469,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -319487,12 +319487,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -319503,12 +319503,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -319521,12 +319521,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -319537,12 +319537,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -319555,12 +319555,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -319571,12 +319571,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -319589,12 +319589,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -319605,12 +319605,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -319623,12 +319623,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -319639,12 +319639,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -319657,12 +319657,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -319673,12 +319673,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -319691,12 +319691,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -319707,12 +319707,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -319725,12 +319725,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -319741,12 +319741,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -319759,12 +319759,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -319775,12 +319775,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -319793,12 +319793,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -319809,12 +319809,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -319827,12 +319827,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -319843,12 +319843,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -319861,12 +319861,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -319877,12 +319877,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -319895,12 +319895,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -319911,12 +319911,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -319929,12 +319929,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -319945,12 +319945,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -319963,12 +319963,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -319979,12 +319979,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -319997,12 +319997,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -320013,12 +320013,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -320031,12 +320031,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -320047,12 +320047,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -320065,12 +320065,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -320081,12 +320081,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -320099,12 +320099,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -320115,12 +320115,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -320133,12 +320133,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -320149,12 +320149,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -320167,12 +320167,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -320183,12 +320183,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -320201,12 +320201,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -320217,12 +320217,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -320235,12 +320235,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -320251,12 +320251,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -320269,12 +320269,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -320285,12 +320285,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -320303,12 +320303,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -320319,12 +320319,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -320337,12 +320337,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -320353,12 +320353,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -320371,12 +320371,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -320387,12 +320387,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -320405,12 +320405,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -320421,12 +320421,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -320439,12 +320439,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -320455,12 +320455,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -320473,12 +320473,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -320489,12 +320489,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -320507,12 +320507,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -320523,12 +320523,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -320541,12 +320541,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -320557,12 +320557,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -320575,12 +320575,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -320591,12 +320591,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -320609,12 +320609,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -320625,12 +320625,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -320643,12 +320643,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -320659,12 +320659,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c3, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -320677,12 +320677,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -320693,12 +320693,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c3, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -320711,12 +320711,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = d3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -320727,12 +320727,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d3, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -320745,12 +320745,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = d3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -320761,12 +320761,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d3, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -320779,12 +320779,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = d3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -320795,12 +320795,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d3, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -320813,12 +320813,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -320829,12 +320829,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -320847,12 +320847,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -320863,12 +320863,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -320881,12 +320881,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -320897,12 +320897,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -320915,12 +320915,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -320931,12 +320931,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -320949,12 +320949,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -320965,12 +320965,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -320983,12 +320983,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -320999,12 +320999,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -321017,12 +321017,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -321033,12 +321033,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -321051,12 +321051,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -321067,12 +321067,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -321085,12 +321085,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -321101,12 +321101,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -321119,12 +321119,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -321135,12 +321135,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -321153,12 +321153,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -321169,12 +321169,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -321187,12 +321187,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -321203,12 +321203,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -321221,12 +321221,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -321237,12 +321237,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -321255,12 +321255,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -321271,12 +321271,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -321289,12 +321289,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -321305,12 +321305,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -321323,12 +321323,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -321339,12 +321339,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -321357,12 +321357,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -321373,12 +321373,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -321391,12 +321391,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -321407,12 +321407,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -321425,12 +321425,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -321441,12 +321441,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -321459,12 +321459,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -321475,12 +321475,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -321493,12 +321493,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -321509,12 +321509,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -321527,12 +321527,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -321543,12 +321543,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -321561,12 +321561,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -321577,12 +321577,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -321595,12 +321595,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -321611,12 +321611,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -321629,12 +321629,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -321645,12 +321645,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -321663,12 +321663,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -321679,12 +321679,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -321697,12 +321697,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = d0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -321713,12 +321713,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -321731,12 +321731,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -321747,12 +321747,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -321765,12 +321765,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -321781,12 +321781,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -321799,12 +321799,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -321815,12 +321815,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -321833,12 +321833,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -321849,12 +321849,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -321867,12 +321867,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -321883,12 +321883,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -321901,12 +321901,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -321917,12 +321917,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -321935,12 +321935,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -321951,12 +321951,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -321969,12 +321969,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -321985,12 +321985,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -322003,12 +322003,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -322019,12 +322019,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -322037,12 +322037,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -322053,12 +322053,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -322071,12 +322071,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -322087,12 +322087,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -322105,12 +322105,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -322121,12 +322121,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -322139,12 +322139,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -322155,12 +322155,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -322173,12 +322173,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -322189,12 +322189,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -322207,12 +322207,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -322223,12 +322223,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -322241,12 +322241,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 13
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -322257,12 +322257,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 13, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -322275,12 +322275,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 33
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -322291,12 +322291,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 33, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -322309,12 +322309,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 33
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -322325,12 +322325,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 33, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -322343,12 +322343,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 33
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -322359,12 +322359,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 33, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -322377,12 +322377,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -322393,12 +322393,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -322411,12 +322411,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -322427,12 +322427,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -322445,12 +322445,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -322461,12 +322461,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -322479,12 +322479,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -322495,12 +322495,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -322513,12 +322513,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -322529,12 +322529,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -322547,12 +322547,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -322563,12 +322563,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -322581,12 +322581,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -322597,12 +322597,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -322615,12 +322615,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -322631,12 +322631,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -322649,12 +322649,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -322665,12 +322665,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -322683,12 +322683,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -322699,12 +322699,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -322717,12 +322717,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -322733,12 +322733,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -322751,12 +322751,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -322767,12 +322767,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -322785,12 +322785,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -322801,12 +322801,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -322819,12 +322819,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -322835,12 +322835,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -322853,12 +322853,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -322869,12 +322869,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -322887,12 +322887,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -322903,12 +322903,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -322921,12 +322921,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -322937,12 +322937,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -322955,12 +322955,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -322971,12 +322971,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -322989,12 +322989,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -323005,12 +323005,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -323023,12 +323023,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -323039,12 +323039,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -323057,12 +323057,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -323073,12 +323073,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -323091,12 +323091,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -323107,12 +323107,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -323125,12 +323125,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -323141,12 +323141,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -323159,12 +323159,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -323175,12 +323175,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -323193,12 +323193,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -323209,12 +323209,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -323227,12 +323227,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -323243,12 +323243,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -323261,12 +323261,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -323277,12 +323277,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -323295,12 +323295,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -323311,12 +323311,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -323329,12 +323329,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -323345,12 +323345,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -323363,12 +323363,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -323379,12 +323379,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -323397,12 +323397,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -323413,12 +323413,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -323431,12 +323431,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -323447,12 +323447,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -323465,12 +323465,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -323481,12 +323481,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -323499,12 +323499,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -323515,12 +323515,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -323533,12 +323533,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -323549,12 +323549,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -323567,12 +323567,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -323583,12 +323583,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -323601,12 +323601,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -323617,12 +323617,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -323635,12 +323635,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -323651,12 +323651,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -323669,12 +323669,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -323685,12 +323685,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -323703,12 +323703,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -323719,12 +323719,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -323737,12 +323737,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -323753,12 +323753,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 83, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -323771,12 +323771,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -323787,12 +323787,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 83, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -323805,12 +323805,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = b1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -323821,12 +323821,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = b1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -323839,12 +323839,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = b3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -323855,12 +323855,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = b3, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -323873,12 +323873,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = b3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -323889,12 +323889,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = b3, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -323907,12 +323907,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = b3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -323923,12 +323923,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = b3, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -323941,12 +323941,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -323957,12 +323957,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -323975,12 +323975,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -323991,12 +323991,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -324009,12 +324009,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -324025,12 +324025,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -324043,12 +324043,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -324059,12 +324059,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -324077,12 +324077,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -324093,12 +324093,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -324111,12 +324111,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -324127,12 +324127,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -324145,12 +324145,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -324161,12 +324161,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -324179,12 +324179,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -324195,12 +324195,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -324213,12 +324213,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -324229,12 +324229,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -324247,12 +324247,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -324263,12 +324263,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -324281,12 +324281,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -324297,12 +324297,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -324315,12 +324315,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -324331,12 +324331,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -324349,12 +324349,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -324365,12 +324365,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -324383,12 +324383,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -324399,12 +324399,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -324417,12 +324417,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -324433,12 +324433,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -324451,12 +324451,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -324467,12 +324467,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -324485,12 +324485,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -324501,12 +324501,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -324519,12 +324519,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -324535,12 +324535,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -324553,12 +324553,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -324569,12 +324569,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -324587,12 +324587,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -324603,12 +324603,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -324621,12 +324621,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -324637,12 +324637,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -324655,12 +324655,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -324671,12 +324671,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -324689,12 +324689,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -324705,12 +324705,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -324723,12 +324723,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -324739,12 +324739,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -324757,12 +324757,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -324773,12 +324773,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -324791,12 +324791,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -324807,12 +324807,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -324825,12 +324825,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -324841,12 +324841,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -324859,12 +324859,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -324875,12 +324875,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -324893,12 +324893,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -324909,12 +324909,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -324927,12 +324927,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -324943,12 +324943,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -324961,12 +324961,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -324977,12 +324977,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -324995,12 +324995,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -325011,12 +325011,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -325029,12 +325029,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -325045,12 +325045,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -325063,12 +325063,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -325079,12 +325079,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -325097,12 +325097,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -325113,12 +325113,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -325131,12 +325131,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -325147,12 +325147,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -325165,12 +325165,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -325181,12 +325181,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -325199,12 +325199,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -325215,12 +325215,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -325233,12 +325233,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -325249,12 +325249,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -325267,12 +325267,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -325283,12 +325283,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -325301,12 +325301,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -325317,12 +325317,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 70, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -325335,12 +325335,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -325351,12 +325351,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 70, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -325369,12 +325369,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 71
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -325385,12 +325385,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 71, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -325403,12 +325403,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 73
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -325419,12 +325419,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 73, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -325437,12 +325437,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 73
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -325453,12 +325453,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 73, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -325471,12 +325471,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 73
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -325487,12 +325487,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 73, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -325505,12 +325505,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -325521,12 +325521,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -325539,12 +325539,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -325555,12 +325555,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -325573,12 +325573,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -325589,12 +325589,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -325607,12 +325607,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -325623,12 +325623,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -325641,12 +325641,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -325657,12 +325657,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -325675,12 +325675,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -325691,12 +325691,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -325709,12 +325709,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -325725,12 +325725,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -325743,12 +325743,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -325759,12 +325759,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -325777,12 +325777,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -325793,12 +325793,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -325811,12 +325811,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -325827,12 +325827,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -325845,12 +325845,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -325861,12 +325861,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -325879,12 +325879,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -325895,12 +325895,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -325913,12 +325913,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -325929,12 +325929,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -325947,12 +325947,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -325963,12 +325963,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -325981,12 +325981,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -325997,12 +325997,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -326015,12 +326015,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -326031,12 +326031,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -326049,12 +326049,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 32
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -326065,12 +326065,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -326083,12 +326083,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -326099,12 +326099,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -326117,12 +326117,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -326133,12 +326133,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -326151,12 +326151,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -326167,12 +326167,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -326185,12 +326185,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -326201,12 +326201,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -326219,12 +326219,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -326235,12 +326235,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -326253,12 +326253,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -326269,12 +326269,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -326287,12 +326287,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -326303,12 +326303,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -326321,12 +326321,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -326337,12 +326337,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -326355,12 +326355,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -326371,12 +326371,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -326389,12 +326389,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -326405,12 +326405,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -326423,12 +326423,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -326439,12 +326439,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -326457,12 +326457,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -326473,12 +326473,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -326491,12 +326491,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -326507,12 +326507,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -326525,12 +326525,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -326541,12 +326541,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -326559,12 +326559,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -326575,12 +326575,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -326593,12 +326593,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -326609,12 +326609,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -326627,12 +326627,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -326643,12 +326643,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -326661,12 +326661,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -326677,12 +326677,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -326695,12 +326695,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -326711,12 +326711,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -326729,12 +326729,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -326745,12 +326745,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -326763,12 +326763,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -326779,12 +326779,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -326797,12 +326797,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -326813,12 +326813,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -326831,12 +326831,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -326847,12 +326847,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -326865,12 +326865,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -326881,12 +326881,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 70, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -326899,12 +326899,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -326915,12 +326915,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -326933,12 +326933,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = f1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -326949,12 +326949,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -326967,12 +326967,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = f3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -326983,12 +326983,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f3, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -327001,12 +327001,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = f3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -327017,12 +327017,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f3, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -327035,12 +327035,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = f3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -327051,12 +327051,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f3, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -327069,12 +327069,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -327085,12 +327085,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -327103,12 +327103,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -327119,12 +327119,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -327137,12 +327137,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -327153,12 +327153,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -327171,12 +327171,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -327187,12 +327187,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -327205,12 +327205,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -327221,12 +327221,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -327239,12 +327239,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -327255,12 +327255,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -327273,12 +327273,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -327289,12 +327289,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -327307,12 +327307,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -327323,12 +327323,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -327341,12 +327341,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -327357,12 +327357,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -327375,12 +327375,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -327391,12 +327391,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -327409,12 +327409,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -327425,12 +327425,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -327443,12 +327443,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -327459,12 +327459,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -327477,12 +327477,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -327493,12 +327493,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -327511,12 +327511,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -327527,12 +327527,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -327545,12 +327545,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -327561,12 +327561,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -327579,12 +327579,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -327595,12 +327595,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -327613,12 +327613,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -327629,12 +327629,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -327647,12 +327647,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -327663,12 +327663,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -327681,12 +327681,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -327697,12 +327697,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -327715,12 +327715,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -327731,12 +327731,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -327749,12 +327749,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -327765,12 +327765,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -327783,12 +327783,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -327799,12 +327799,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -327817,12 +327817,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -327833,12 +327833,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -327851,12 +327851,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -327867,12 +327867,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -327885,12 +327885,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -327901,12 +327901,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -327919,12 +327919,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -327935,12 +327935,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -327953,12 +327953,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -327969,12 +327969,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -327987,12 +327987,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -328003,12 +328003,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -328021,12 +328021,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -328037,12 +328037,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -328055,12 +328055,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -328071,12 +328071,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -328089,12 +328089,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -328105,12 +328105,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -328123,12 +328123,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -328139,12 +328139,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -328157,12 +328157,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -328173,12 +328173,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -328191,12 +328191,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -328207,12 +328207,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -328225,12 +328225,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -328241,12 +328241,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -328259,12 +328259,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -328275,12 +328275,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -328293,12 +328293,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -328309,12 +328309,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -328327,12 +328327,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -328343,12 +328343,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -328361,12 +328361,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -328377,12 +328377,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -328395,12 +328395,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -328411,12 +328411,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -328429,12 +328429,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -328445,12 +328445,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -328463,12 +328463,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -328479,12 +328479,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -328497,12 +328497,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -328513,12 +328513,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -328531,12 +328531,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -328547,12 +328547,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -328565,12 +328565,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -328581,12 +328581,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -328599,12 +328599,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -328615,12 +328615,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -328633,12 +328633,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -328649,12 +328649,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -328667,12 +328667,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -328683,12 +328683,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -328701,12 +328701,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -328717,12 +328717,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -328735,12 +328735,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -328751,12 +328751,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -328769,12 +328769,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -328785,12 +328785,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -328803,12 +328803,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -328819,12 +328819,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -328837,12 +328837,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -328853,12 +328853,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -328871,12 +328871,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -328887,12 +328887,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -328905,12 +328905,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -328921,12 +328921,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -328939,12 +328939,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -328955,12 +328955,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -328973,12 +328973,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -328989,12 +328989,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -329007,12 +329007,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -329023,12 +329023,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -329041,12 +329041,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -329057,12 +329057,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -329075,12 +329075,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -329091,12 +329091,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -329109,12 +329109,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -329125,12 +329125,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -329143,12 +329143,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -329159,12 +329159,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -329177,12 +329177,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -329193,12 +329193,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -329211,12 +329211,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -329227,12 +329227,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -329245,12 +329245,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -329261,12 +329261,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -329279,12 +329279,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -329295,12 +329295,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -329313,12 +329313,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -329329,12 +329329,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -329347,12 +329347,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -329363,12 +329363,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -329381,12 +329381,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -329397,12 +329397,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -329415,12 +329415,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -329431,12 +329431,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -329449,12 +329449,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -329465,12 +329465,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -329483,12 +329483,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -329499,12 +329499,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -329517,12 +329517,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -329533,12 +329533,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -329551,12 +329551,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -329567,12 +329567,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -329585,12 +329585,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -329601,12 +329601,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -329619,12 +329619,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -329635,12 +329635,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -329653,12 +329653,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -329669,12 +329669,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -329687,12 +329687,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -329703,12 +329703,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -329721,12 +329721,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -329737,12 +329737,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -329755,12 +329755,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -329771,12 +329771,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -329789,12 +329789,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -329805,12 +329805,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -329823,12 +329823,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -329839,12 +329839,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -329857,12 +329857,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -329873,12 +329873,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -329891,12 +329891,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -329907,12 +329907,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -329925,12 +329925,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -329941,12 +329941,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -329959,12 +329959,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -329975,12 +329975,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -329993,12 +329993,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -330009,12 +330009,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 83, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -330027,12 +330027,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -330043,12 +330043,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 83, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -330061,12 +330061,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 8b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -330077,12 +330077,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 8b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -330095,12 +330095,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 8b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -330111,12 +330111,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 8b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -330129,12 +330129,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 8b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -330145,12 +330145,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 8b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -330163,12 +330163,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 8b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -330179,12 +330179,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 8b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -330197,12 +330197,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -330213,12 +330213,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -330231,12 +330231,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -330247,12 +330247,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -330265,12 +330265,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -330281,12 +330281,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -330299,12 +330299,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -330315,12 +330315,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -330333,12 +330333,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -330349,12 +330349,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -330367,12 +330367,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -330383,12 +330383,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -330401,12 +330401,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -330417,12 +330417,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -330435,12 +330435,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -330451,12 +330451,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -330469,12 +330469,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -330485,12 +330485,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -330503,12 +330503,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -330519,12 +330519,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -330537,12 +330537,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -330553,12 +330553,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -330571,12 +330571,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -330587,12 +330587,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -330605,12 +330605,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -330621,12 +330621,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -330639,12 +330639,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -330655,12 +330655,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -330673,12 +330673,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -330689,12 +330689,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -330707,12 +330707,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -330723,12 +330723,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -330741,12 +330741,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -330757,12 +330757,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -330775,12 +330775,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -330791,12 +330791,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -330809,12 +330809,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -330825,12 +330825,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -330843,12 +330843,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -330859,12 +330859,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -330877,12 +330877,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -330893,12 +330893,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -330911,12 +330911,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -330927,12 +330927,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -330945,12 +330945,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -330961,12 +330961,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -330979,12 +330979,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -330995,12 +330995,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -331013,12 +331013,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -331029,12 +331029,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -331047,12 +331047,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -331063,12 +331063,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -331081,12 +331081,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -331097,12 +331097,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -331115,12 +331115,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -331131,12 +331131,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -331149,12 +331149,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -331165,12 +331165,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -331183,12 +331183,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -331199,12 +331199,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -331217,12 +331217,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -331233,12 +331233,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -331251,12 +331251,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -331267,12 +331267,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -331285,12 +331285,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -331301,12 +331301,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -331319,12 +331319,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -331335,12 +331335,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -331353,12 +331353,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -331369,12 +331369,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -331387,12 +331387,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -331403,12 +331403,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -331421,12 +331421,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -331437,12 +331437,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -331455,12 +331455,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -331471,12 +331471,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -331489,12 +331489,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -331505,12 +331505,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -331523,12 +331523,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -331539,12 +331539,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -331557,12 +331557,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -331573,12 +331573,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -331591,12 +331591,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -331607,12 +331607,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -331625,12 +331625,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -331641,12 +331641,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -331659,12 +331659,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 4b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -331675,12 +331675,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 4b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -331693,12 +331693,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 4b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -331709,12 +331709,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 4b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -331727,12 +331727,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 4b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -331743,12 +331743,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 4b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -331761,12 +331761,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -331777,12 +331777,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -331795,12 +331795,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -331811,12 +331811,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -331829,12 +331829,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -331845,12 +331845,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -331863,12 +331863,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -331879,12 +331879,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -331897,12 +331897,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -331913,12 +331913,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -331931,12 +331931,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -331947,12 +331947,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -331965,12 +331965,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -331981,12 +331981,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -331999,12 +331999,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -332015,12 +332015,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -332033,12 +332033,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -332049,12 +332049,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -332067,12 +332067,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -332083,12 +332083,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -332101,12 +332101,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -332117,12 +332117,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -332135,12 +332135,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -332151,12 +332151,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -332169,12 +332169,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -332185,12 +332185,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -332203,12 +332203,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -332219,12 +332219,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -332237,12 +332237,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -332253,12 +332253,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -332271,12 +332271,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -332287,12 +332287,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -332305,12 +332305,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -332321,12 +332321,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -332339,12 +332339,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -332355,12 +332355,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -332373,12 +332373,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -332389,12 +332389,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -332407,12 +332407,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -332423,12 +332423,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -332441,12 +332441,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -332457,12 +332457,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -332475,12 +332475,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -332491,12 +332491,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -332509,12 +332509,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -332525,12 +332525,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -332543,12 +332543,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -332559,12 +332559,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -332577,12 +332577,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -332593,12 +332593,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -332611,12 +332611,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -332627,12 +332627,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -332645,12 +332645,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -332661,12 +332661,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -332679,12 +332679,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -332695,12 +332695,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -332713,12 +332713,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -332729,12 +332729,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -332747,12 +332747,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -332763,12 +332763,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -332781,12 +332781,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -332797,12 +332797,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -332815,12 +332815,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -332831,12 +332831,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -332849,12 +332849,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -332865,12 +332865,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -332883,12 +332883,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -332899,12 +332899,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -332917,12 +332917,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -332933,12 +332933,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -332951,12 +332951,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -332967,12 +332967,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -332985,12 +332985,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -333001,12 +333001,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -333019,12 +333019,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -333035,12 +333035,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -333053,12 +333053,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -333069,12 +333069,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -333087,12 +333087,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -333103,12 +333103,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -333121,12 +333121,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -333137,12 +333137,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -333155,12 +333155,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -333171,12 +333171,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c3, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -333189,12 +333189,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -333205,12 +333205,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c3, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -333223,12 +333223,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = cb
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -333239,12 +333239,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = cb, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -333257,12 +333257,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = cb
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -333273,12 +333273,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = cb, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -333291,12 +333291,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = cb
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -333307,12 +333307,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = cb, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -333325,12 +333325,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -333341,12 +333341,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -333359,12 +333359,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -333375,12 +333375,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -333393,12 +333393,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -333409,12 +333409,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -333427,12 +333427,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -333443,12 +333443,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -333461,12 +333461,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -333477,12 +333477,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -333495,12 +333495,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -333511,12 +333511,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -333529,12 +333529,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -333545,12 +333545,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -333563,12 +333563,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -333579,12 +333579,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -333597,12 +333597,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -333613,12 +333613,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -333631,12 +333631,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -333647,12 +333647,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -333665,12 +333665,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -333681,12 +333681,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -333699,12 +333699,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -333715,12 +333715,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -333733,12 +333733,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -333749,12 +333749,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -333767,12 +333767,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -333783,12 +333783,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -333801,12 +333801,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -333817,12 +333817,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -333835,12 +333835,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -333851,12 +333851,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -333869,12 +333869,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -333885,12 +333885,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -333903,12 +333903,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -333919,12 +333919,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -333937,12 +333937,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -333953,12 +333953,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -333971,12 +333971,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -333987,12 +333987,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -334005,12 +334005,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -334021,12 +334021,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -334039,12 +334039,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -334055,12 +334055,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -334073,12 +334073,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -334089,12 +334089,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -334107,12 +334107,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -334123,12 +334123,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -334141,12 +334141,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -334157,12 +334157,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -334175,12 +334175,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -334191,12 +334191,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -334209,12 +334209,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -334225,12 +334225,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -334243,12 +334243,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -334259,12 +334259,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -334277,12 +334277,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -334293,12 +334293,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -334311,12 +334311,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -334327,12 +334327,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -334345,12 +334345,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -334361,12 +334361,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -334379,12 +334379,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -334395,12 +334395,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -334413,12 +334413,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -334429,12 +334429,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -334447,12 +334447,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -334463,12 +334463,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -334481,12 +334481,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -334497,12 +334497,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -334515,12 +334515,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -334531,12 +334531,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -334549,12 +334549,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -334565,12 +334565,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -334583,12 +334583,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -334599,12 +334599,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -334617,12 +334617,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -334633,12 +334633,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -334651,12 +334651,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -334667,12 +334667,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -334685,12 +334685,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -334701,12 +334701,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -334719,12 +334719,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -334735,12 +334735,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -334753,12 +334753,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -334769,12 +334769,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -334787,12 +334787,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 2b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -334803,12 +334803,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 2b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -334821,12 +334821,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 2b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -334837,12 +334837,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 2b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -334855,12 +334855,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 2b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -334871,12 +334871,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 2b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -334889,12 +334889,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -334905,12 +334905,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -334923,12 +334923,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -334939,12 +334939,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -334957,12 +334957,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -334973,12 +334973,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -334991,12 +334991,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -335007,12 +335007,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -335025,12 +335025,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -335041,12 +335041,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -335059,12 +335059,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -335075,12 +335075,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -335093,12 +335093,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -335109,12 +335109,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -335127,12 +335127,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -335143,12 +335143,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -335161,12 +335161,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -335177,12 +335177,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -335195,12 +335195,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -335211,12 +335211,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -335229,12 +335229,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -335245,12 +335245,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -335263,12 +335263,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -335279,12 +335279,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -335297,12 +335297,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -335313,12 +335313,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -335331,12 +335331,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -335347,12 +335347,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -335365,12 +335365,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -335381,12 +335381,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -335399,12 +335399,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -335415,12 +335415,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -335433,12 +335433,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -335449,12 +335449,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -335467,12 +335467,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -335483,12 +335483,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -335501,12 +335501,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -335517,12 +335517,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -335535,12 +335535,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -335551,12 +335551,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -335569,12 +335569,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -335585,12 +335585,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -335603,12 +335603,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -335619,12 +335619,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -335637,12 +335637,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -335653,12 +335653,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -335671,12 +335671,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -335687,12 +335687,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -335705,12 +335705,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -335721,12 +335721,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -335739,12 +335739,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -335755,12 +335755,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -335773,12 +335773,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -335789,12 +335789,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -335807,12 +335807,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -335823,12 +335823,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -335841,12 +335841,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -335857,12 +335857,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -335875,12 +335875,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -335891,12 +335891,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -335909,12 +335909,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -335925,12 +335925,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -335943,12 +335943,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -335959,12 +335959,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -335977,12 +335977,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -335993,12 +335993,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -336011,12 +336011,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -336027,12 +336027,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -336045,12 +336045,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -336061,12 +336061,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -336079,12 +336079,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -336095,12 +336095,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -336113,12 +336113,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -336129,12 +336129,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -336147,12 +336147,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -336163,12 +336163,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -336181,12 +336181,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -336197,12 +336197,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -336215,12 +336215,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -336231,12 +336231,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -336249,12 +336249,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -336265,12 +336265,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 83, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -336283,12 +336283,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -336299,12 +336299,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 83, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -336317,12 +336317,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = a3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -336333,12 +336333,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a3, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -336351,12 +336351,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = a3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -336367,12 +336367,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a3, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -336385,12 +336385,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = ab
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -336401,12 +336401,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = ab, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -336419,12 +336419,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = ab
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -336435,12 +336435,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = ab, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -336453,12 +336453,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -336469,12 +336469,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -336487,12 +336487,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -336503,12 +336503,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -336521,12 +336521,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -336537,12 +336537,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -336555,12 +336555,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -336571,12 +336571,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -336589,12 +336589,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -336605,12 +336605,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -336623,12 +336623,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -336639,12 +336639,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -336657,12 +336657,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -336673,12 +336673,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -336691,12 +336691,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -336707,12 +336707,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -336725,12 +336725,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -336741,12 +336741,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -336759,12 +336759,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -336775,12 +336775,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -336793,12 +336793,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -336809,12 +336809,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -336827,12 +336827,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -336843,12 +336843,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -336861,12 +336861,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -336877,12 +336877,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -336895,12 +336895,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -336911,12 +336911,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -336929,12 +336929,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -336945,12 +336945,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -336963,12 +336963,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -336979,12 +336979,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -336997,12 +336997,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -337013,12 +337013,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -337031,12 +337031,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -337047,12 +337047,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -337065,12 +337065,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -337081,12 +337081,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -337099,12 +337099,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -337115,12 +337115,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -337133,12 +337133,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -337149,12 +337149,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -337167,12 +337167,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -337183,12 +337183,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -337201,12 +337201,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -337217,12 +337217,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -337235,12 +337235,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -337251,12 +337251,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -337269,12 +337269,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -337285,12 +337285,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -337303,12 +337303,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -337319,12 +337319,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -337337,12 +337337,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -337353,12 +337353,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -337371,12 +337371,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -337387,12 +337387,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -337405,12 +337405,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -337421,12 +337421,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -337439,12 +337439,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -337455,12 +337455,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -337473,12 +337473,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -337489,12 +337489,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -337507,12 +337507,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -337523,12 +337523,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -337541,12 +337541,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -337557,12 +337557,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -337575,12 +337575,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -337591,12 +337591,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -337609,12 +337609,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -337625,12 +337625,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -337643,12 +337643,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -337659,12 +337659,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -337677,12 +337677,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -337693,12 +337693,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -337711,12 +337711,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -337727,12 +337727,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -337745,12 +337745,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -337761,12 +337761,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -337779,12 +337779,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -337795,12 +337795,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -337813,12 +337813,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -337829,12 +337829,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -337847,12 +337847,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -337863,12 +337863,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -337881,12 +337881,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 63
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -337897,12 +337897,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 63, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -337915,12 +337915,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 63
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -337931,12 +337931,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 63, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -337949,12 +337949,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 6b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -337965,12 +337965,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 6b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -337983,12 +337983,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 6b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -337999,12 +337999,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 6b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -338017,12 +338017,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -338033,12 +338033,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -338051,12 +338051,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -338067,12 +338067,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -338085,12 +338085,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -338101,12 +338101,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -338119,12 +338119,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -338135,12 +338135,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -338153,12 +338153,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -338169,12 +338169,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -338187,12 +338187,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -338203,12 +338203,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -338221,12 +338221,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -338237,12 +338237,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -338255,12 +338255,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -338271,12 +338271,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -338289,12 +338289,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -338305,12 +338305,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -338323,12 +338323,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -338339,12 +338339,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -338357,12 +338357,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -338373,12 +338373,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -338391,12 +338391,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -338407,12 +338407,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -338425,12 +338425,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -338441,12 +338441,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -338459,12 +338459,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -338475,12 +338475,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -338493,12 +338493,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -338509,12 +338509,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -338527,12 +338527,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -338543,12 +338543,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -338561,12 +338561,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -338577,12 +338577,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -338595,12 +338595,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -338611,12 +338611,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -338629,12 +338629,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -338645,12 +338645,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -338663,12 +338663,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -338679,12 +338679,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -338697,12 +338697,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -338713,12 +338713,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -338731,12 +338731,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -338747,12 +338747,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -338765,12 +338765,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -338781,12 +338781,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -338799,12 +338799,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -338815,12 +338815,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -338833,12 +338833,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -338849,12 +338849,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -338867,12 +338867,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -338883,12 +338883,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -338901,12 +338901,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -338917,12 +338917,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -338935,12 +338935,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -338951,12 +338951,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -338969,12 +338969,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -338985,12 +338985,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -339003,12 +339003,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -339019,12 +339019,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -339037,12 +339037,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -339053,12 +339053,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -339071,12 +339071,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -339087,12 +339087,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -339105,12 +339105,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -339121,12 +339121,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -339139,12 +339139,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -339155,12 +339155,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -339173,12 +339173,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -339189,12 +339189,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -339207,12 +339207,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 68
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -339223,12 +339223,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -339241,12 +339241,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -339257,12 +339257,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -339275,12 +339275,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -339291,12 +339291,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -339309,12 +339309,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -339325,12 +339325,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -339343,12 +339343,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -339359,12 +339359,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -339377,12 +339377,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -339393,12 +339393,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -339411,12 +339411,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = e1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -339427,12 +339427,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -339445,12 +339445,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = e3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -339461,12 +339461,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e3, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -339479,12 +339479,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = e3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -339495,12 +339495,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e3, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -339513,12 +339513,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = eb
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -339529,12 +339529,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = eb, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -339547,12 +339547,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = eb
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -339563,12 +339563,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = eb, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -339581,12 +339581,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -339597,12 +339597,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -339615,12 +339615,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -339631,12 +339631,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -339649,12 +339649,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -339665,12 +339665,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -339683,12 +339683,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -339699,12 +339699,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -339717,12 +339717,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -339733,12 +339733,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -339751,12 +339751,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -339767,12 +339767,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -339785,12 +339785,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -339801,12 +339801,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -339819,12 +339819,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -339835,12 +339835,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -339853,12 +339853,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -339869,12 +339869,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -339887,12 +339887,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -339903,12 +339903,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -339921,12 +339921,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -339937,12 +339937,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -339955,12 +339955,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -339971,12 +339971,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -339989,12 +339989,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -340005,12 +340005,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -340023,12 +340023,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -340039,12 +340039,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -340057,12 +340057,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -340073,12 +340073,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -340091,12 +340091,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -340107,12 +340107,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -340125,12 +340125,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -340141,12 +340141,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -340159,12 +340159,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -340175,12 +340175,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -340193,12 +340193,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -340209,12 +340209,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -340227,12 +340227,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -340243,12 +340243,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -340261,12 +340261,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -340277,12 +340277,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -340295,12 +340295,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -340311,12 +340311,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -340329,12 +340329,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -340345,12 +340345,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -340363,12 +340363,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -340379,12 +340379,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -340397,12 +340397,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -340413,12 +340413,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -340431,12 +340431,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -340447,12 +340447,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -340465,12 +340465,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -340481,12 +340481,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -340499,12 +340499,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -340515,12 +340515,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -340533,12 +340533,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -340549,12 +340549,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -340567,12 +340567,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -340583,12 +340583,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -340601,12 +340601,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -340617,12 +340617,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -340635,12 +340635,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -340651,12 +340651,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -340669,12 +340669,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -340685,12 +340685,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -340703,12 +340703,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -340719,12 +340719,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -340737,12 +340737,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -340753,12 +340753,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -340771,12 +340771,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -340787,12 +340787,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -340805,12 +340805,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -340821,12 +340821,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -340839,12 +340839,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -340855,12 +340855,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -340873,12 +340873,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -340889,12 +340889,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -340907,12 +340907,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -340923,12 +340923,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -340941,12 +340941,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -340957,12 +340957,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -340975,12 +340975,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -340991,12 +340991,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -341009,12 +341009,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -341025,12 +341025,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -341043,12 +341043,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -341059,12 +341059,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -341077,12 +341077,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -341093,12 +341093,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -341111,12 +341111,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -341127,12 +341127,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -341145,12 +341145,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -341161,12 +341161,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -341179,12 +341179,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -341195,12 +341195,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -341213,12 +341213,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -341229,12 +341229,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -341247,12 +341247,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -341263,12 +341263,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -341281,12 +341281,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -341297,12 +341297,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -341315,12 +341315,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -341331,12 +341331,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -341349,12 +341349,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -341365,12 +341365,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -341383,12 +341383,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -341399,12 +341399,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -341417,12 +341417,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -341433,12 +341433,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -341451,12 +341451,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -341467,12 +341467,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -341485,12 +341485,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -341501,12 +341501,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -341519,12 +341519,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -341535,12 +341535,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -341553,12 +341553,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -341569,12 +341569,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -341587,12 +341587,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -341603,12 +341603,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -341621,12 +341621,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -341637,12 +341637,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -341655,12 +341655,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -341671,12 +341671,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -341689,12 +341689,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -341705,12 +341705,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -341723,12 +341723,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -341739,12 +341739,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -341757,12 +341757,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -341773,12 +341773,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -341791,12 +341791,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -341807,12 +341807,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -341825,12 +341825,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -341841,12 +341841,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -341859,12 +341859,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -341875,12 +341875,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -341893,12 +341893,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -341909,12 +341909,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -341927,12 +341927,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -341943,12 +341943,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -341961,12 +341961,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -341977,12 +341977,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -341995,12 +341995,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -342011,12 +342011,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -342029,12 +342029,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -342045,12 +342045,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -342063,12 +342063,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -342079,12 +342079,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -342097,12 +342097,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -342113,12 +342113,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -342131,12 +342131,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -342147,12 +342147,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -342165,12 +342165,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -342181,12 +342181,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -342199,12 +342199,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -342215,12 +342215,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -342233,12 +342233,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -342249,12 +342249,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -342267,12 +342267,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -342283,12 +342283,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -342301,12 +342301,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -342317,12 +342317,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -342335,12 +342335,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -342351,12 +342351,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -342369,12 +342369,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -342385,12 +342385,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -342403,12 +342403,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -342419,12 +342419,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -342437,12 +342437,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -342453,12 +342453,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -342471,12 +342471,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -342487,12 +342487,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -342505,12 +342505,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -342521,12 +342521,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 83, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -342539,12 +342539,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -342555,12 +342555,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 83, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -342573,12 +342573,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -342589,12 +342589,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -342607,12 +342607,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 9b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -342623,12 +342623,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 9b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -342641,12 +342641,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 9b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -342657,12 +342657,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 9b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -342675,12 +342675,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 9b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -342691,12 +342691,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 9b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -342709,12 +342709,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -342725,12 +342725,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -342743,12 +342743,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -342759,12 +342759,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -342777,12 +342777,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -342793,12 +342793,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -342811,12 +342811,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -342827,12 +342827,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -342845,12 +342845,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -342861,12 +342861,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -342879,12 +342879,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -342895,12 +342895,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -342913,12 +342913,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -342929,12 +342929,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -342947,12 +342947,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -342963,12 +342963,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -342981,12 +342981,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -342997,12 +342997,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -343015,12 +343015,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -343031,12 +343031,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -343049,12 +343049,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -343065,12 +343065,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -343083,12 +343083,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -343099,12 +343099,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -343117,12 +343117,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -343133,12 +343133,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -343151,12 +343151,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -343167,12 +343167,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -343185,12 +343185,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -343201,12 +343201,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -343219,12 +343219,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -343235,12 +343235,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -343253,12 +343253,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -343269,12 +343269,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -343287,12 +343287,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -343303,12 +343303,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -343321,12 +343321,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -343337,12 +343337,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -343355,12 +343355,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -343371,12 +343371,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -343389,12 +343389,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -343405,12 +343405,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -343423,12 +343423,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -343439,12 +343439,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -343457,12 +343457,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -343473,12 +343473,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -343491,12 +343491,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -343507,12 +343507,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -343525,12 +343525,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -343541,12 +343541,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -343559,12 +343559,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -343575,12 +343575,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -343593,12 +343593,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -343609,12 +343609,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -343627,12 +343627,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -343643,12 +343643,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -343661,12 +343661,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -343677,12 +343677,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -343695,12 +343695,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -343711,12 +343711,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -343729,12 +343729,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -343745,12 +343745,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -343763,12 +343763,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -343779,12 +343779,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -343797,12 +343797,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -343813,12 +343813,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -343831,12 +343831,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -343847,12 +343847,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -343865,12 +343865,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -343881,12 +343881,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -343899,12 +343899,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -343915,12 +343915,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -343933,12 +343933,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -343949,12 +343949,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -343967,12 +343967,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -343983,12 +343983,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -344001,12 +344001,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -344017,12 +344017,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -344035,12 +344035,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -344051,12 +344051,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -344069,12 +344069,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -344085,12 +344085,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -344103,12 +344103,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -344119,12 +344119,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -344137,12 +344137,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -344153,12 +344153,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -344171,12 +344171,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -344187,12 +344187,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -344205,12 +344205,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 5b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -344221,12 +344221,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 5b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -344239,12 +344239,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 5b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -344255,12 +344255,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 5b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -344273,12 +344273,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -344289,12 +344289,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -344307,12 +344307,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -344323,12 +344323,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -344341,12 +344341,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -344357,12 +344357,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -344375,12 +344375,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -344391,12 +344391,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -344409,12 +344409,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -344425,12 +344425,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -344443,12 +344443,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -344459,12 +344459,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -344477,12 +344477,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -344493,12 +344493,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -344511,12 +344511,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -344527,12 +344527,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -344545,12 +344545,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -344561,12 +344561,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -344579,12 +344579,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -344595,12 +344595,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -344613,12 +344613,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 43
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -344629,12 +344629,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -344647,12 +344647,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -344663,12 +344663,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -344681,12 +344681,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -344697,12 +344697,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -344715,12 +344715,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -344731,12 +344731,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -344749,12 +344749,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -344765,12 +344765,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -344783,12 +344783,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -344799,12 +344799,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -344817,12 +344817,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -344833,12 +344833,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -344851,12 +344851,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -344867,12 +344867,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -344885,12 +344885,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -344901,12 +344901,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -344919,12 +344919,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -344935,12 +344935,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -344953,12 +344953,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -344969,12 +344969,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -344987,12 +344987,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -345003,12 +345003,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -345021,12 +345021,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -345037,12 +345037,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -345055,12 +345055,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -345071,12 +345071,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -345089,12 +345089,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -345105,12 +345105,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -345123,12 +345123,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -345139,12 +345139,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -345157,12 +345157,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -345173,12 +345173,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -345191,12 +345191,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -345207,12 +345207,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -345225,12 +345225,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -345241,12 +345241,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -345259,12 +345259,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -345275,12 +345275,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -345293,12 +345293,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -345309,12 +345309,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -345327,12 +345327,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -345343,12 +345343,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -345361,12 +345361,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -345377,12 +345377,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -345395,12 +345395,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -345411,12 +345411,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -345429,12 +345429,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -345445,12 +345445,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -345463,12 +345463,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -345479,12 +345479,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -345497,12 +345497,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -345513,12 +345513,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -345531,12 +345531,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -345547,12 +345547,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -345565,12 +345565,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -345581,12 +345581,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -345599,12 +345599,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -345615,12 +345615,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -345633,12 +345633,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -345649,12 +345649,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -345667,12 +345667,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -345683,12 +345683,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c3, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -345701,12 +345701,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -345717,12 +345717,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c3, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -345735,12 +345735,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = d9
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -345751,12 +345751,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d9, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -345769,12 +345769,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = db
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -345785,12 +345785,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = db, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -345803,12 +345803,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = db
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -345819,12 +345819,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = db, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -345837,12 +345837,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -345853,12 +345853,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -345871,12 +345871,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -345887,12 +345887,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -345905,12 +345905,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -345921,12 +345921,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -345939,12 +345939,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -345955,12 +345955,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -345973,12 +345973,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -345989,12 +345989,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -346007,12 +346007,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -346023,12 +346023,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -346041,12 +346041,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -346057,12 +346057,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -346075,12 +346075,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -346091,12 +346091,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -346109,12 +346109,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -346125,12 +346125,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -346143,12 +346143,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -346159,12 +346159,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -346177,12 +346177,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -346193,12 +346193,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -346211,12 +346211,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -346227,12 +346227,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -346245,12 +346245,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -346261,12 +346261,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -346279,12 +346279,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -346295,12 +346295,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -346313,12 +346313,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -346329,12 +346329,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -346347,12 +346347,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -346363,12 +346363,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -346381,12 +346381,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -346397,12 +346397,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -346415,12 +346415,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -346431,12 +346431,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -346449,12 +346449,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -346465,12 +346465,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -346483,12 +346483,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -346499,12 +346499,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -346517,12 +346517,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -346533,12 +346533,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -346551,12 +346551,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -346567,12 +346567,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -346585,12 +346585,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -346601,12 +346601,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -346619,12 +346619,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -346635,12 +346635,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -346653,12 +346653,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -346669,12 +346669,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -346687,12 +346687,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -346703,12 +346703,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -346721,12 +346721,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -346737,12 +346737,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -346755,12 +346755,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -346771,12 +346771,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -346789,12 +346789,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -346805,12 +346805,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -346823,12 +346823,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -346839,12 +346839,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -346857,12 +346857,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -346873,12 +346873,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -346891,12 +346891,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -346907,12 +346907,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -346925,12 +346925,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -346941,12 +346941,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -346959,12 +346959,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -346975,12 +346975,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -346993,12 +346993,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -347009,12 +347009,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -347027,12 +347027,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -347043,12 +347043,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -347061,12 +347061,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -347077,12 +347077,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -347095,12 +347095,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -347111,12 +347111,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -347129,12 +347129,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -347145,12 +347145,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -347163,12 +347163,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -347179,12 +347179,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -347197,12 +347197,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -347213,12 +347213,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 38, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -347231,12 +347231,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -347247,12 +347247,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 38, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -347265,12 +347265,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -347281,12 +347281,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -347299,12 +347299,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 3b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -347315,12 +347315,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -347333,12 +347333,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 3b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -347349,12 +347349,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -347367,12 +347367,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 3b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -347383,12 +347383,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -347401,12 +347401,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -347417,12 +347417,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -347435,12 +347435,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -347451,12 +347451,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -347469,12 +347469,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -347485,12 +347485,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -347503,12 +347503,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -347519,12 +347519,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -347537,12 +347537,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -347553,12 +347553,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -347571,12 +347571,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -347587,12 +347587,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -347605,12 +347605,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -347621,12 +347621,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -347639,12 +347639,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -347655,12 +347655,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -347673,12 +347673,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -347689,12 +347689,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -347707,12 +347707,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -347723,12 +347723,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -347741,12 +347741,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -347757,12 +347757,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -347775,12 +347775,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -347791,12 +347791,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -347809,12 +347809,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -347825,12 +347825,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -347843,12 +347843,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -347859,12 +347859,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -347877,12 +347877,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -347893,12 +347893,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -347911,12 +347911,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -347927,12 +347927,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -347945,12 +347945,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -347961,12 +347961,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -347979,12 +347979,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -347995,12 +347995,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -348013,12 +348013,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -348029,12 +348029,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -348047,12 +348047,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -348063,12 +348063,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -348081,12 +348081,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -348097,12 +348097,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -348115,12 +348115,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -348131,12 +348131,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -348149,12 +348149,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -348165,12 +348165,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -348183,12 +348183,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -348199,12 +348199,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -348217,12 +348217,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -348233,12 +348233,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -348251,12 +348251,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -348267,12 +348267,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -348285,12 +348285,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -348301,12 +348301,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -348319,12 +348319,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -348335,12 +348335,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -348353,12 +348353,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -348369,12 +348369,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -348387,12 +348387,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -348403,12 +348403,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -348421,12 +348421,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -348437,12 +348437,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -348455,12 +348455,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -348471,12 +348471,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -348489,12 +348489,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -348505,12 +348505,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -348523,12 +348523,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -348539,12 +348539,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -348557,12 +348557,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -348573,12 +348573,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -348591,12 +348591,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1a
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -348607,12 +348607,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -348625,12 +348625,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -348641,12 +348641,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -348659,12 +348659,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -348675,12 +348675,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -348693,12 +348693,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -348709,12 +348709,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -348727,12 +348727,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -348743,12 +348743,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -348761,12 +348761,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -348777,12 +348777,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 38, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -348795,12 +348795,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -348811,12 +348811,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 38, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -348829,12 +348829,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -348845,12 +348845,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -348863,12 +348863,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 3b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -348879,12 +348879,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -348897,12 +348897,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = bb
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -348913,12 +348913,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = bb, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -348931,12 +348931,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = bb
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -348947,12 +348947,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = bb, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -348965,12 +348965,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -348981,12 +348981,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -348999,12 +348999,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -349015,12 +349015,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -349033,12 +349033,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -349049,12 +349049,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -349067,12 +349067,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -349083,12 +349083,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -349101,12 +349101,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -349117,12 +349117,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -349135,12 +349135,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -349151,12 +349151,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -349169,12 +349169,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -349185,12 +349185,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -349203,12 +349203,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -349219,12 +349219,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -349237,12 +349237,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -349253,12 +349253,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -349271,12 +349271,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -349287,12 +349287,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -349305,12 +349305,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 83
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -349321,12 +349321,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -349339,12 +349339,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -349355,12 +349355,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -349373,12 +349373,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -349389,12 +349389,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -349407,12 +349407,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -349423,12 +349423,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -349441,12 +349441,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -349457,12 +349457,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -349475,12 +349475,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -349491,12 +349491,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -349509,12 +349509,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -349525,12 +349525,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -349543,12 +349543,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -349559,12 +349559,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -349577,12 +349577,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -349593,12 +349593,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -349611,12 +349611,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -349627,12 +349627,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -349645,12 +349645,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -349661,12 +349661,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -349679,12 +349679,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -349695,12 +349695,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -349713,12 +349713,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -349729,12 +349729,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -349747,12 +349747,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -349763,12 +349763,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -349781,12 +349781,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -349797,12 +349797,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -349815,12 +349815,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -349831,12 +349831,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -349849,12 +349849,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -349865,12 +349865,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -349883,12 +349883,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -349899,12 +349899,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -349917,12 +349917,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -349933,12 +349933,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -349951,12 +349951,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -349967,12 +349967,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -349985,12 +349985,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -350001,12 +350001,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -350019,12 +350019,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -350035,12 +350035,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -350053,12 +350053,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -350069,12 +350069,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -350087,12 +350087,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -350103,12 +350103,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -350121,12 +350121,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -350137,12 +350137,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -350155,12 +350155,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -350171,12 +350171,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -350189,12 +350189,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -350205,12 +350205,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -350223,12 +350223,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -350239,12 +350239,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -350257,12 +350257,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -350273,12 +350273,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -350291,12 +350291,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -350307,12 +350307,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -350325,12 +350325,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -350341,12 +350341,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 38, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -350359,12 +350359,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -350375,12 +350375,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 78, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -350393,12 +350393,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -350409,12 +350409,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 78, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -350427,12 +350427,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 3b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -350443,12 +350443,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -350461,12 +350461,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 7b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -350477,12 +350477,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 7b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -350495,12 +350495,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 7b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -350511,12 +350511,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 7b, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -350529,12 +350529,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -350545,12 +350545,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -350563,12 +350563,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -350579,12 +350579,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -350597,12 +350597,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -350613,12 +350613,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -350631,12 +350631,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -350647,12 +350647,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -350665,12 +350665,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -350681,12 +350681,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -350699,12 +350699,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -350715,12 +350715,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -350733,12 +350733,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -350749,12 +350749,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -350767,12 +350767,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -350783,12 +350783,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -350801,12 +350801,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -350817,12 +350817,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -350835,12 +350835,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -350851,12 +350851,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -350869,12 +350869,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -350885,12 +350885,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -350903,12 +350903,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -350919,12 +350919,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -350937,12 +350937,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -350953,12 +350953,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -350971,12 +350971,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -350987,12 +350987,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -351005,12 +351005,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -351021,12 +351021,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -351039,12 +351039,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -351055,12 +351055,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -351073,12 +351073,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -351089,12 +351089,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -351107,12 +351107,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -351123,12 +351123,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -351141,12 +351141,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -351157,12 +351157,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -351175,12 +351175,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -351191,12 +351191,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -351209,12 +351209,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -351225,12 +351225,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -351243,12 +351243,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1b
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -351259,12 +351259,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -351277,12 +351277,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -351293,12 +351293,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -351311,12 +351311,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -351327,12 +351327,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -351345,12 +351345,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -351361,12 +351361,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -351379,12 +351379,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -351395,12 +351395,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -351413,12 +351413,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -351429,12 +351429,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -351447,12 +351447,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -351463,12 +351463,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -351481,12 +351481,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -351497,12 +351497,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -351515,12 +351515,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -351531,12 +351531,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -351549,12 +351549,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -351565,12 +351565,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -351583,12 +351583,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -351599,12 +351599,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -351617,12 +351617,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -351633,12 +351633,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -351651,12 +351651,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -351667,12 +351667,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -351685,12 +351685,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -351701,12 +351701,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -351719,12 +351719,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -351735,12 +351735,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -351753,12 +351753,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -351769,12 +351769,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -351787,12 +351787,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -351803,12 +351803,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -351821,12 +351821,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -351837,12 +351837,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -351855,12 +351855,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -351871,12 +351871,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -351889,12 +351889,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 38
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -351905,12 +351905,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 38, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -351923,12 +351923,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -351939,12 +351939,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 78, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -351957,12 +351957,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -351973,12 +351973,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f8, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -351991,12 +351991,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = f9
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -352007,12 +352007,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f9, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -352025,12 +352025,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = fb
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -352041,12 +352041,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = fb, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -352059,12 +352059,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = fb
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -352075,12 +352075,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = fb, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -352093,12 +352093,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -352109,12 +352109,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -352127,12 +352127,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -352143,12 +352143,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -352161,12 +352161,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -352177,12 +352177,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -352195,12 +352195,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -352211,12 +352211,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -352229,12 +352229,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -352245,12 +352245,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -352263,12 +352263,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -352279,12 +352279,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -352297,12 +352297,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -352313,12 +352313,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -352331,12 +352331,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -352347,12 +352347,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -352365,12 +352365,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -352381,12 +352381,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -352399,12 +352399,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -352415,12 +352415,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -352433,12 +352433,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -352449,12 +352449,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -352467,12 +352467,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -352483,12 +352483,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -352501,12 +352501,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -352517,12 +352517,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -352535,12 +352535,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -352551,12 +352551,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -352569,12 +352569,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -352585,12 +352585,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -352603,12 +352603,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -352619,12 +352619,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -352637,12 +352637,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -352653,12 +352653,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -352671,12 +352671,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -352687,12 +352687,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -352705,12 +352705,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -352721,12 +352721,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -352739,12 +352739,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -352755,12 +352755,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -352773,12 +352773,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -352789,12 +352789,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -352807,12 +352807,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -352823,12 +352823,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -352841,12 +352841,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -352857,12 +352857,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -352875,12 +352875,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -352891,12 +352891,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -352909,12 +352909,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -352925,12 +352925,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -352943,12 +352943,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -352959,12 +352959,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -352977,12 +352977,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -352993,12 +352993,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -353011,12 +353011,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -353027,12 +353027,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -353045,12 +353045,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -353061,12 +353061,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -353079,12 +353079,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -353095,12 +353095,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -353113,12 +353113,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -353129,12 +353129,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -353147,12 +353147,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -353163,12 +353163,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -353181,12 +353181,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -353197,12 +353197,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -353215,12 +353215,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -353231,12 +353231,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -353249,12 +353249,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -353265,12 +353265,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -353283,12 +353283,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -353299,12 +353299,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -353317,12 +353317,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -353333,12 +353333,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -353351,12 +353351,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -353367,12 +353367,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -353385,12 +353385,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -353401,12 +353401,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -353419,12 +353419,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -353435,12 +353435,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -353453,12 +353453,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -353469,12 +353469,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -353487,12 +353487,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -353503,12 +353503,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -353521,12 +353521,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -353537,12 +353537,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -353555,12 +353555,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -353571,12 +353571,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -353589,12 +353589,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -353605,12 +353605,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -353623,12 +353623,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -353639,12 +353639,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -353657,12 +353657,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -353673,12 +353673,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -353691,12 +353691,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -353707,12 +353707,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -353725,12 +353725,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -353741,12 +353741,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -353759,12 +353759,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -353775,12 +353775,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -353793,12 +353793,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -353809,12 +353809,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -353827,12 +353827,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -353843,12 +353843,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -353861,12 +353861,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -353877,12 +353877,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -353895,12 +353895,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -353911,12 +353911,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -353929,12 +353929,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -353945,12 +353945,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -353963,12 +353963,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -353979,12 +353979,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -353997,12 +353997,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -354013,12 +354013,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -354031,12 +354031,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -354047,12 +354047,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -354065,12 +354065,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -354081,12 +354081,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -354099,12 +354099,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -354115,12 +354115,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -354133,12 +354133,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -354149,12 +354149,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -354167,12 +354167,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -354183,12 +354183,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -354201,12 +354201,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -354217,12 +354217,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -354235,12 +354235,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -354251,12 +354251,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -354269,12 +354269,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -354285,12 +354285,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -354303,12 +354303,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -354319,12 +354319,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -354337,12 +354337,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -354353,12 +354353,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -354371,12 +354371,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -354387,12 +354387,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -354405,12 +354405,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -354421,12 +354421,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -354439,12 +354439,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -354455,12 +354455,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -354473,12 +354473,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -354489,12 +354489,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -354507,12 +354507,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -354523,12 +354523,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -354541,12 +354541,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -354557,12 +354557,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -354575,12 +354575,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -354591,12 +354591,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -354609,12 +354609,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -354625,12 +354625,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -354643,12 +354643,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -354659,12 +354659,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -354677,12 +354677,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -354693,12 +354693,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -354711,12 +354711,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -354727,12 +354727,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -354745,12 +354745,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -354761,12 +354761,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -354779,12 +354779,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -354795,12 +354795,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -354813,12 +354813,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -354829,12 +354829,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -354847,12 +354847,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -354863,12 +354863,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -354881,12 +354881,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -354897,12 +354897,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -354915,12 +354915,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -354931,12 +354931,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -354949,12 +354949,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -354965,12 +354965,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -354983,12 +354983,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -354999,12 +354999,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -355017,12 +355017,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -355033,12 +355033,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -355051,12 +355051,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -355067,12 +355067,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 87, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -355085,12 +355085,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -355101,12 +355101,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 87, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -355119,12 +355119,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -355135,12 +355135,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 87, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -355153,12 +355153,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -355169,12 +355169,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 87, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -355187,12 +355187,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -355203,12 +355203,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 87, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -355221,12 +355221,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -355237,12 +355237,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -355255,12 +355255,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -355271,12 +355271,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -355289,12 +355289,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -355305,12 +355305,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -355323,12 +355323,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -355339,12 +355339,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -355357,12 +355357,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -355373,12 +355373,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -355391,12 +355391,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -355407,12 +355407,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -355425,12 +355425,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -355441,12 +355441,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -355459,12 +355459,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -355475,12 +355475,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -355493,12 +355493,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -355509,12 +355509,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -355527,12 +355527,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -355543,12 +355543,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -355561,12 +355561,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -355577,12 +355577,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -355595,12 +355595,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -355611,12 +355611,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -355629,12 +355629,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -355645,12 +355645,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -355663,12 +355663,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -355679,12 +355679,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -355697,12 +355697,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -355713,12 +355713,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -355731,12 +355731,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -355747,12 +355747,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -355765,12 +355765,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -355781,12 +355781,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -355799,12 +355799,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -355815,12 +355815,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -355833,12 +355833,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -355849,12 +355849,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -355867,12 +355867,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -355883,12 +355883,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -355901,12 +355901,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -355917,12 +355917,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -355935,12 +355935,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -355951,12 +355951,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -355969,12 +355969,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -355985,12 +355985,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -356003,12 +356003,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -356019,12 +356019,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -356037,12 +356037,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -356053,12 +356053,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -356071,12 +356071,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -356087,12 +356087,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -356105,12 +356105,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -356121,12 +356121,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -356139,12 +356139,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -356155,12 +356155,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -356173,12 +356173,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -356189,12 +356189,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -356207,12 +356207,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -356223,12 +356223,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -356241,12 +356241,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -356257,12 +356257,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -356275,12 +356275,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -356291,12 +356291,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -356309,12 +356309,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -356325,12 +356325,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -356343,12 +356343,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -356359,12 +356359,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -356377,12 +356377,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -356393,12 +356393,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -356411,12 +356411,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -356427,12 +356427,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -356445,12 +356445,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -356461,12 +356461,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -356479,12 +356479,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -356495,12 +356495,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -356513,12 +356513,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -356529,12 +356529,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -356547,12 +356547,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -356563,12 +356563,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -356581,12 +356581,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -356597,12 +356597,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -356615,12 +356615,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -356631,12 +356631,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -356649,12 +356649,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 47
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -356665,12 +356665,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 47, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -356683,12 +356683,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 47
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -356699,12 +356699,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 47, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -356717,12 +356717,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 47
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -356733,12 +356733,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 47, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -356751,12 +356751,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 47
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -356767,12 +356767,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 47, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -356785,12 +356785,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -356801,12 +356801,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -356819,12 +356819,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -356835,12 +356835,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -356853,12 +356853,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -356869,12 +356869,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -356887,12 +356887,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -356903,12 +356903,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -356921,12 +356921,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -356937,12 +356937,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -356955,12 +356955,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -356971,12 +356971,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -356989,12 +356989,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -357005,12 +357005,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -357023,12 +357023,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -357039,12 +357039,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -357057,12 +357057,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -357073,12 +357073,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -357091,12 +357091,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -357107,12 +357107,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -357125,12 +357125,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -357141,12 +357141,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -357159,12 +357159,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -357175,12 +357175,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -357193,12 +357193,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -357209,12 +357209,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -357227,12 +357227,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -357243,12 +357243,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -357261,12 +357261,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -357277,12 +357277,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -357295,12 +357295,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -357311,12 +357311,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -357329,12 +357329,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -357345,12 +357345,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -357363,12 +357363,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -357379,12 +357379,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -357397,12 +357397,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -357413,12 +357413,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -357431,12 +357431,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -357447,12 +357447,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -357465,12 +357465,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -357481,12 +357481,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -357499,12 +357499,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -357515,12 +357515,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -357533,12 +357533,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -357549,12 +357549,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -357567,12 +357567,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -357583,12 +357583,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -357601,12 +357601,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -357617,12 +357617,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -357635,12 +357635,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -357651,12 +357651,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -357669,12 +357669,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -357685,12 +357685,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -357703,12 +357703,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -357719,12 +357719,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -357737,12 +357737,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -357753,12 +357753,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -357771,12 +357771,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -357787,12 +357787,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -357805,12 +357805,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -357821,12 +357821,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -357839,12 +357839,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -357855,12 +357855,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -357873,12 +357873,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -357889,12 +357889,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -357907,12 +357907,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -357923,12 +357923,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -357941,12 +357941,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -357957,12 +357957,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -357975,12 +357975,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -357991,12 +357991,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -358009,12 +358009,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -358025,12 +358025,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -358043,12 +358043,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -358059,12 +358059,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -358077,12 +358077,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -358093,12 +358093,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -358111,12 +358111,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -358127,12 +358127,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -358145,12 +358145,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -358161,12 +358161,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -358179,12 +358179,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -358195,12 +358195,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c3, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -358213,12 +358213,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c7
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -358229,12 +358229,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c7, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -358247,12 +358247,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c7
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -358263,12 +358263,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c7, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -358281,12 +358281,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c7
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -358297,12 +358297,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c7, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -358315,12 +358315,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c7
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -358331,12 +358331,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c7, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -358349,12 +358349,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -358365,12 +358365,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -358383,12 +358383,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -358399,12 +358399,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -358417,12 +358417,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -358433,12 +358433,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -358451,12 +358451,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -358467,12 +358467,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -358485,12 +358485,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -358501,12 +358501,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -358519,12 +358519,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -358535,12 +358535,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -358553,12 +358553,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -358569,12 +358569,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -358587,12 +358587,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -358603,12 +358603,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -358621,12 +358621,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -358637,12 +358637,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -358655,12 +358655,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -358671,12 +358671,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -358689,12 +358689,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -358705,12 +358705,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -358723,12 +358723,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -358739,12 +358739,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -358757,12 +358757,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -358773,12 +358773,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -358791,12 +358791,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -358807,12 +358807,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -358825,12 +358825,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -358841,12 +358841,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -358859,12 +358859,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -358875,12 +358875,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -358893,12 +358893,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -358909,12 +358909,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -358927,12 +358927,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -358943,12 +358943,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -358961,12 +358961,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -358977,12 +358977,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -358995,12 +358995,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -359011,12 +359011,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -359029,12 +359029,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -359045,12 +359045,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -359063,12 +359063,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -359079,12 +359079,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -359097,12 +359097,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -359113,12 +359113,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -359131,12 +359131,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -359147,12 +359147,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -359165,12 +359165,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -359181,12 +359181,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -359199,12 +359199,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -359215,12 +359215,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -359233,12 +359233,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -359249,12 +359249,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -359267,12 +359267,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -359283,12 +359283,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -359301,12 +359301,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -359317,12 +359317,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -359335,12 +359335,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -359351,12 +359351,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -359369,12 +359369,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -359385,12 +359385,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -359403,12 +359403,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -359419,12 +359419,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -359437,12 +359437,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -359453,12 +359453,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -359471,12 +359471,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -359487,12 +359487,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -359505,12 +359505,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -359521,12 +359521,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -359539,12 +359539,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -359555,12 +359555,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -359573,12 +359573,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -359589,12 +359589,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -359607,12 +359607,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -359623,12 +359623,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -359641,12 +359641,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -359657,12 +359657,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -359675,12 +359675,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -359691,12 +359691,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -359709,12 +359709,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -359725,12 +359725,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -359743,12 +359743,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -359759,12 +359759,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -359777,12 +359777,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -359793,12 +359793,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -359811,12 +359811,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 27
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -359827,12 +359827,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 27, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -359845,12 +359845,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 27
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -359861,12 +359861,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 27, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -359879,12 +359879,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 27
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -359895,12 +359895,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 27, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -359913,12 +359913,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -359929,12 +359929,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -359947,12 +359947,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -359963,12 +359963,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -359981,12 +359981,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -359997,12 +359997,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -360015,12 +360015,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -360031,12 +360031,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -360049,12 +360049,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -360065,12 +360065,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -360083,12 +360083,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -360099,12 +360099,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -360117,12 +360117,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -360133,12 +360133,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -360151,12 +360151,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -360167,12 +360167,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -360185,12 +360185,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -360201,12 +360201,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -360219,12 +360219,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -360235,12 +360235,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -360253,12 +360253,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -360269,12 +360269,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -360287,12 +360287,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -360303,12 +360303,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -360321,12 +360321,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -360337,12 +360337,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -360355,12 +360355,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -360371,12 +360371,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -360389,12 +360389,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -360405,12 +360405,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -360423,12 +360423,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -360439,12 +360439,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -360457,12 +360457,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -360473,12 +360473,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -360491,12 +360491,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -360507,12 +360507,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -360525,12 +360525,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -360541,12 +360541,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -360559,12 +360559,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -360575,12 +360575,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -360593,12 +360593,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -360609,12 +360609,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -360627,12 +360627,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -360643,12 +360643,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -360661,12 +360661,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -360677,12 +360677,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -360695,12 +360695,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -360711,12 +360711,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -360729,12 +360729,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -360745,12 +360745,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -360763,12 +360763,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -360779,12 +360779,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -360797,12 +360797,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -360813,12 +360813,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -360831,12 +360831,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -360847,12 +360847,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -360865,12 +360865,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -360881,12 +360881,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -360899,12 +360899,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -360915,12 +360915,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -360933,12 +360933,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -360949,12 +360949,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -360967,12 +360967,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -360983,12 +360983,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -361001,12 +361001,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -361017,12 +361017,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -361035,12 +361035,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -361051,12 +361051,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -361069,12 +361069,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -361085,12 +361085,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -361103,12 +361103,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -361119,12 +361119,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -361137,12 +361137,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -361153,12 +361153,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -361171,12 +361171,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -361187,12 +361187,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -361205,12 +361205,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -361221,12 +361221,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -361239,12 +361239,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -361255,12 +361255,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -361273,12 +361273,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -361289,12 +361289,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -361307,12 +361307,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -361323,12 +361323,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 87, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -361341,12 +361341,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -361357,12 +361357,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 87, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -361375,12 +361375,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = a7
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -361391,12 +361391,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a7, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -361409,12 +361409,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = a7
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -361425,12 +361425,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a7, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -361443,12 +361443,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = a7
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -361459,12 +361459,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = a7, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -361477,12 +361477,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -361493,12 +361493,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -361511,12 +361511,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -361527,12 +361527,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -361545,12 +361545,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -361561,12 +361561,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -361579,12 +361579,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -361595,12 +361595,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -361613,12 +361613,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -361629,12 +361629,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -361647,12 +361647,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -361663,12 +361663,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -361681,12 +361681,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -361697,12 +361697,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -361715,12 +361715,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -361731,12 +361731,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -361749,12 +361749,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -361765,12 +361765,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -361783,12 +361783,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -361799,12 +361799,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -361817,12 +361817,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -361833,12 +361833,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -361851,12 +361851,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -361867,12 +361867,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -361885,12 +361885,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -361901,12 +361901,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -361919,12 +361919,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -361935,12 +361935,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -361953,12 +361953,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -361969,12 +361969,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -361987,12 +361987,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -362003,12 +362003,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -362021,12 +362021,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -362037,12 +362037,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -362055,12 +362055,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -362071,12 +362071,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -362089,12 +362089,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -362105,12 +362105,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -362123,12 +362123,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -362139,12 +362139,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -362157,12 +362157,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -362173,12 +362173,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -362191,12 +362191,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -362207,12 +362207,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -362225,12 +362225,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -362241,12 +362241,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -362259,12 +362259,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -362275,12 +362275,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -362293,12 +362293,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -362309,12 +362309,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -362327,12 +362327,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -362343,12 +362343,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -362361,12 +362361,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -362377,12 +362377,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -362395,12 +362395,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -362411,12 +362411,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -362429,12 +362429,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -362445,12 +362445,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -362463,12 +362463,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -362479,12 +362479,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -362497,12 +362497,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -362513,12 +362513,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -362531,12 +362531,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -362547,12 +362547,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -362565,12 +362565,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -362581,12 +362581,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -362599,12 +362599,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -362615,12 +362615,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -362633,12 +362633,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -362649,12 +362649,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -362667,12 +362667,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -362683,12 +362683,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -362701,12 +362701,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -362717,12 +362717,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -362735,12 +362735,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -362751,12 +362751,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -362769,12 +362769,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -362785,12 +362785,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -362803,12 +362803,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -362819,12 +362819,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -362837,12 +362837,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -362853,12 +362853,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -362871,12 +362871,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -362887,12 +362887,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -362905,12 +362905,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 63
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -362921,12 +362921,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 63, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -362939,12 +362939,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 67
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -362955,12 +362955,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 67, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -362973,12 +362973,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 67
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -362989,12 +362989,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 67, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -363007,12 +363007,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 67
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -363023,12 +363023,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 67, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -363041,12 +363041,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -363057,12 +363057,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -363075,12 +363075,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -363091,12 +363091,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -363109,12 +363109,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -363125,12 +363125,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -363143,12 +363143,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -363159,12 +363159,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -363177,12 +363177,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -363193,12 +363193,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -363211,12 +363211,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -363227,12 +363227,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -363245,12 +363245,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -363261,12 +363261,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -363279,12 +363279,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -363295,12 +363295,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -363313,12 +363313,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -363329,12 +363329,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -363347,12 +363347,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -363363,12 +363363,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -363381,12 +363381,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -363397,12 +363397,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -363415,12 +363415,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -363431,12 +363431,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -363449,12 +363449,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -363465,12 +363465,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -363483,12 +363483,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -363499,12 +363499,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -363517,12 +363517,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -363533,12 +363533,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -363551,12 +363551,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -363567,12 +363567,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -363585,12 +363585,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -363601,12 +363601,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -363619,12 +363619,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -363635,12 +363635,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -363653,12 +363653,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -363669,12 +363669,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -363687,12 +363687,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -363703,12 +363703,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -363721,12 +363721,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -363737,12 +363737,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -363755,12 +363755,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -363771,12 +363771,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -363789,12 +363789,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -363805,12 +363805,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -363823,12 +363823,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -363839,12 +363839,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -363857,12 +363857,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -363873,12 +363873,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -363891,12 +363891,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -363907,12 +363907,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -363925,12 +363925,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -363941,12 +363941,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -363959,12 +363959,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -363975,12 +363975,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -363993,12 +363993,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -364009,12 +364009,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -364027,12 +364027,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -364043,12 +364043,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -364061,12 +364061,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -364077,12 +364077,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -364095,12 +364095,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -364111,12 +364111,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -364129,12 +364129,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -364145,12 +364145,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -364163,12 +364163,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -364179,12 +364179,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -364197,12 +364197,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -364213,12 +364213,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -364231,12 +364231,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -364247,12 +364247,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -364265,12 +364265,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -364281,12 +364281,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -364299,12 +364299,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -364315,12 +364315,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -364333,12 +364333,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -364349,12 +364349,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -364367,12 +364367,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -364383,12 +364383,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -364401,12 +364401,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -364417,12 +364417,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -364435,12 +364435,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = e1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -364451,12 +364451,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -364469,12 +364469,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = e3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -364485,12 +364485,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e3, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -364503,12 +364503,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = e7
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -364519,12 +364519,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e7, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -364537,12 +364537,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = e7
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -364553,12 +364553,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e7, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -364571,12 +364571,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = e7
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -364587,12 +364587,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e7, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -364605,12 +364605,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -364621,12 +364621,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -364639,12 +364639,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -364655,12 +364655,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -364673,12 +364673,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -364689,12 +364689,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -364707,12 +364707,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -364723,12 +364723,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -364741,12 +364741,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -364757,12 +364757,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -364775,12 +364775,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -364791,12 +364791,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -364809,12 +364809,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -364825,12 +364825,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -364843,12 +364843,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -364859,12 +364859,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -364877,12 +364877,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -364893,12 +364893,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -364911,12 +364911,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -364927,12 +364927,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -364945,12 +364945,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -364961,12 +364961,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -364979,12 +364979,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -364995,12 +364995,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -365013,12 +365013,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -365029,12 +365029,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -365047,12 +365047,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -365063,12 +365063,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -365081,12 +365081,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -365097,12 +365097,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -365115,12 +365115,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -365131,12 +365131,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -365149,12 +365149,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -365165,12 +365165,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -365183,12 +365183,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -365199,12 +365199,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -365217,12 +365217,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -365233,12 +365233,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -365251,12 +365251,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -365267,12 +365267,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -365285,12 +365285,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -365301,12 +365301,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -365319,12 +365319,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 23
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -365335,12 +365335,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -365353,12 +365353,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -365369,12 +365369,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -365387,12 +365387,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -365403,12 +365403,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -365421,12 +365421,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -365437,12 +365437,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -365455,12 +365455,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -365471,12 +365471,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -365489,12 +365489,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -365505,12 +365505,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -365523,12 +365523,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -365539,12 +365539,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -365557,12 +365557,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -365573,12 +365573,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -365591,12 +365591,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -365607,12 +365607,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -365625,12 +365625,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -365641,12 +365641,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -365659,12 +365659,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -365675,12 +365675,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -365693,12 +365693,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -365709,12 +365709,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -365727,12 +365727,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -365743,12 +365743,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -365761,12 +365761,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -365777,12 +365777,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -365795,12 +365795,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -365811,12 +365811,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -365829,12 +365829,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -365845,12 +365845,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -365863,12 +365863,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -365879,12 +365879,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -365897,12 +365897,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -365913,12 +365913,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -365931,12 +365931,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -365947,12 +365947,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -365965,12 +365965,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -365981,12 +365981,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -365999,12 +365999,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -366015,12 +366015,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -366033,12 +366033,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 17
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -366049,12 +366049,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 17, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -366067,12 +366067,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 17
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -366083,12 +366083,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 17, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -366101,12 +366101,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 17
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -366117,12 +366117,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 17, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -366135,12 +366135,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 17
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -366151,12 +366151,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 17, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -366169,12 +366169,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -366185,12 +366185,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -366203,12 +366203,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -366219,12 +366219,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -366237,12 +366237,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -366253,12 +366253,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -366271,12 +366271,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -366287,12 +366287,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -366305,12 +366305,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -366321,12 +366321,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -366339,12 +366339,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -366355,12 +366355,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -366373,12 +366373,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -366389,12 +366389,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -366407,12 +366407,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -366423,12 +366423,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -366441,12 +366441,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -366457,12 +366457,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -366475,12 +366475,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -366491,12 +366491,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -366509,12 +366509,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -366525,12 +366525,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -366543,12 +366543,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -366559,12 +366559,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -366577,12 +366577,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -366593,12 +366593,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -366611,12 +366611,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -366627,12 +366627,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -366645,12 +366645,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -366661,12 +366661,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -366679,12 +366679,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -366695,12 +366695,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -366713,12 +366713,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -366729,12 +366729,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -366747,12 +366747,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -366763,12 +366763,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -366781,12 +366781,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -366797,12 +366797,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -366815,12 +366815,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -366831,12 +366831,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -366849,12 +366849,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -366865,12 +366865,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -366883,12 +366883,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -366899,12 +366899,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -366917,12 +366917,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -366933,12 +366933,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -366951,12 +366951,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -366967,12 +366967,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -366985,12 +366985,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -367001,12 +367001,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -367019,12 +367019,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -367035,12 +367035,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -367053,12 +367053,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -367069,12 +367069,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -367087,12 +367087,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -367103,12 +367103,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -367121,12 +367121,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -367137,12 +367137,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -367155,12 +367155,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -367171,12 +367171,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -367189,12 +367189,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -367205,12 +367205,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -367223,12 +367223,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -367239,12 +367239,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -367257,12 +367257,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -367273,12 +367273,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -367291,12 +367291,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -367307,12 +367307,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -367325,12 +367325,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -367341,12 +367341,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -367359,12 +367359,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -367375,12 +367375,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -367393,12 +367393,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -367409,12 +367409,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -367427,12 +367427,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -367443,12 +367443,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -367461,12 +367461,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -367477,12 +367477,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -367495,12 +367495,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -367511,12 +367511,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -367529,12 +367529,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -367545,12 +367545,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -367563,12 +367563,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -367579,12 +367579,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 87, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -367597,12 +367597,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -367613,12 +367613,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 87, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -367631,12 +367631,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 97
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -367647,12 +367647,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 97, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -367665,12 +367665,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 97
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -367681,12 +367681,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 97, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -367699,12 +367699,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 97
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -367715,12 +367715,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 97, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -367733,12 +367733,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -367749,12 +367749,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -367767,12 +367767,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -367783,12 +367783,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -367801,12 +367801,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -367817,12 +367817,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -367835,12 +367835,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -367851,12 +367851,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -367869,12 +367869,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -367885,12 +367885,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -367903,12 +367903,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -367919,12 +367919,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -367937,12 +367937,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -367953,12 +367953,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -367971,12 +367971,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -367987,12 +367987,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -368005,12 +368005,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -368021,12 +368021,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -368039,12 +368039,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -368055,12 +368055,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -368073,12 +368073,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -368089,12 +368089,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -368107,12 +368107,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -368123,12 +368123,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -368141,12 +368141,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -368157,12 +368157,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -368175,12 +368175,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -368191,12 +368191,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -368209,12 +368209,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -368225,12 +368225,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -368243,12 +368243,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -368259,12 +368259,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -368277,12 +368277,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -368293,12 +368293,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -368311,12 +368311,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -368327,12 +368327,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -368345,12 +368345,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -368361,12 +368361,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -368379,12 +368379,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -368395,12 +368395,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -368413,12 +368413,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -368429,12 +368429,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -368447,12 +368447,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -368463,12 +368463,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -368481,12 +368481,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -368497,12 +368497,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -368515,12 +368515,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -368531,12 +368531,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -368549,12 +368549,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -368565,12 +368565,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -368583,12 +368583,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -368599,12 +368599,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -368617,12 +368617,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -368633,12 +368633,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -368651,12 +368651,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -368667,12 +368667,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -368685,12 +368685,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -368701,12 +368701,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -368719,12 +368719,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -368735,12 +368735,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -368753,12 +368753,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -368769,12 +368769,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -368787,12 +368787,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -368803,12 +368803,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -368821,12 +368821,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -368837,12 +368837,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -368855,12 +368855,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -368871,12 +368871,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -368889,12 +368889,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -368905,12 +368905,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -368923,12 +368923,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -368939,12 +368939,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -368957,12 +368957,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -368973,12 +368973,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -368991,12 +368991,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -369007,12 +369007,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -369025,12 +369025,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -369041,12 +369041,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -369059,12 +369059,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -369075,12 +369075,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -369093,12 +369093,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -369109,12 +369109,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -369127,12 +369127,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -369143,12 +369143,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -369161,12 +369161,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 17
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -369177,12 +369177,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 17, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -369195,12 +369195,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 17
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -369211,12 +369211,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 17, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -369229,12 +369229,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 57
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -369245,12 +369245,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 57, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -369263,12 +369263,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 57
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -369279,12 +369279,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 57, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -369297,12 +369297,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -369313,12 +369313,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -369331,12 +369331,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -369347,12 +369347,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -369365,12 +369365,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -369381,12 +369381,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -369399,12 +369399,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -369415,12 +369415,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -369433,12 +369433,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -369449,12 +369449,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -369467,12 +369467,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -369483,12 +369483,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -369501,12 +369501,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -369517,12 +369517,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -369535,12 +369535,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -369551,12 +369551,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -369569,12 +369569,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -369585,12 +369585,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -369603,12 +369603,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -369619,12 +369619,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -369637,12 +369637,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -369653,12 +369653,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -369671,12 +369671,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -369687,12 +369687,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -369705,12 +369705,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -369721,12 +369721,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -369739,12 +369739,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -369755,12 +369755,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -369773,12 +369773,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -369789,12 +369789,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -369807,12 +369807,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -369823,12 +369823,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -369841,12 +369841,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -369857,12 +369857,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -369875,12 +369875,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -369891,12 +369891,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -369909,12 +369909,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -369925,12 +369925,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -369943,12 +369943,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -369959,12 +369959,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -369977,12 +369977,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -369993,12 +369993,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -370011,12 +370011,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -370027,12 +370027,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -370045,12 +370045,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -370061,12 +370061,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -370079,12 +370079,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -370095,12 +370095,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -370113,12 +370113,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -370129,12 +370129,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -370147,12 +370147,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -370163,12 +370163,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -370181,12 +370181,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -370197,12 +370197,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -370215,12 +370215,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -370231,12 +370231,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -370249,12 +370249,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -370265,12 +370265,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -370283,12 +370283,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -370299,12 +370299,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -370317,12 +370317,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -370333,12 +370333,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -370351,12 +370351,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -370367,12 +370367,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -370385,12 +370385,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -370401,12 +370401,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -370419,12 +370419,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -370435,12 +370435,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -370453,12 +370453,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -370469,12 +370469,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -370487,12 +370487,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -370503,12 +370503,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -370521,12 +370521,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -370537,12 +370537,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -370555,12 +370555,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -370571,12 +370571,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -370589,12 +370589,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -370605,12 +370605,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -370623,12 +370623,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -370639,12 +370639,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -370657,12 +370657,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -370673,12 +370673,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -370691,12 +370691,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -370707,12 +370707,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c3, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -370725,12 +370725,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c7
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -370741,12 +370741,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c7, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -370759,12 +370759,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c7
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -370775,12 +370775,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c7, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -370793,12 +370793,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = d7
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -370809,12 +370809,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d7, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -370827,12 +370827,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = d7
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -370843,12 +370843,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = d7, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -370861,12 +370861,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -370877,12 +370877,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -370895,12 +370895,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -370911,12 +370911,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -370929,12 +370929,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -370945,12 +370945,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -370963,12 +370963,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -370979,12 +370979,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -370997,12 +370997,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -371013,12 +371013,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -371031,12 +371031,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -371047,12 +371047,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -371065,12 +371065,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -371081,12 +371081,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -371099,12 +371099,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -371115,12 +371115,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -371133,12 +371133,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -371149,12 +371149,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -371167,12 +371167,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -371183,12 +371183,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -371201,12 +371201,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -371217,12 +371217,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -371235,12 +371235,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -371251,12 +371251,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -371269,12 +371269,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -371285,12 +371285,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -371303,12 +371303,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -371319,12 +371319,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -371337,12 +371337,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -371353,12 +371353,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -371371,12 +371371,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -371387,12 +371387,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -371405,12 +371405,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -371421,12 +371421,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -371439,12 +371439,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -371455,12 +371455,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -371473,12 +371473,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -371489,12 +371489,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -371507,12 +371507,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -371523,12 +371523,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -371541,12 +371541,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -371557,12 +371557,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -371575,12 +371575,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -371591,12 +371591,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -371609,12 +371609,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -371625,12 +371625,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -371643,12 +371643,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -371659,12 +371659,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -371677,12 +371677,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -371693,12 +371693,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -371711,12 +371711,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -371727,12 +371727,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -371745,12 +371745,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -371761,12 +371761,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -371779,12 +371779,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -371795,12 +371795,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -371813,12 +371813,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -371829,12 +371829,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -371847,12 +371847,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -371863,12 +371863,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -371881,12 +371881,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -371897,12 +371897,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -371915,12 +371915,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -371931,12 +371931,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -371949,12 +371949,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -371965,12 +371965,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -371983,12 +371983,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -371999,12 +371999,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -372017,12 +372017,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -372033,12 +372033,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -372051,12 +372051,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -372067,12 +372067,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -372085,12 +372085,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -372101,12 +372101,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -372119,12 +372119,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -372135,12 +372135,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -372153,12 +372153,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -372169,12 +372169,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -372187,12 +372187,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -372203,12 +372203,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -372221,12 +372221,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -372237,12 +372237,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -372255,12 +372255,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -372271,12 +372271,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -372289,12 +372289,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 17
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -372305,12 +372305,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 17, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -372323,12 +372323,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 37
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -372339,12 +372339,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 37, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -372357,12 +372357,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 37
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -372373,12 +372373,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 37, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -372391,12 +372391,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 37
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -372407,12 +372407,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 37, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -372425,12 +372425,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -372441,12 +372441,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -372459,12 +372459,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -372475,12 +372475,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -372493,12 +372493,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -372509,12 +372509,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -372527,12 +372527,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -372543,12 +372543,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -372561,12 +372561,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -372577,12 +372577,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -372595,12 +372595,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -372611,12 +372611,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -372629,12 +372629,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -372645,12 +372645,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -372663,12 +372663,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -372679,12 +372679,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -372697,12 +372697,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -372713,12 +372713,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -372731,12 +372731,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -372747,12 +372747,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -372765,12 +372765,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -372781,12 +372781,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -372799,12 +372799,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -372815,12 +372815,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -372833,12 +372833,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -372849,12 +372849,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -372867,12 +372867,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -372883,12 +372883,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -372901,12 +372901,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -372917,12 +372917,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -372935,12 +372935,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -372951,12 +372951,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -372969,12 +372969,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -372985,12 +372985,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -373003,12 +373003,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -373019,12 +373019,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -373037,12 +373037,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -373053,12 +373053,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -373071,12 +373071,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -373087,12 +373087,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -373105,12 +373105,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -373121,12 +373121,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -373139,12 +373139,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -373155,12 +373155,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -373173,12 +373173,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -373189,12 +373189,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -373207,12 +373207,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -373223,12 +373223,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -373241,12 +373241,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -373257,12 +373257,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -373275,12 +373275,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -373291,12 +373291,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -373309,12 +373309,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -373325,12 +373325,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -373343,12 +373343,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -373359,12 +373359,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -373377,12 +373377,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -373393,12 +373393,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -373411,12 +373411,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -373427,12 +373427,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -373445,12 +373445,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -373461,12 +373461,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -373479,12 +373479,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -373495,12 +373495,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -373513,12 +373513,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -373529,12 +373529,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -373547,12 +373547,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -373563,12 +373563,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -373581,12 +373581,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -373597,12 +373597,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -373615,12 +373615,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -373631,12 +373631,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -373649,12 +373649,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -373665,12 +373665,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -373683,12 +373683,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -373699,12 +373699,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -373717,12 +373717,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -373733,12 +373733,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -373751,12 +373751,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -373767,12 +373767,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -373785,12 +373785,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -373801,12 +373801,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -373819,12 +373819,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -373835,12 +373835,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 87, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -373853,12 +373853,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -373869,12 +373869,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 87, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -373887,12 +373887,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 37
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -373903,12 +373903,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 37, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -373921,12 +373921,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = b7
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -373937,12 +373937,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = b7, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -373955,12 +373955,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = b7
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -373971,12 +373971,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = b7, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -373989,12 +373989,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -374005,12 +374005,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -374023,12 +374023,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -374039,12 +374039,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -374057,12 +374057,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -374073,12 +374073,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -374091,12 +374091,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -374107,12 +374107,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -374125,12 +374125,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -374141,12 +374141,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -374159,12 +374159,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -374175,12 +374175,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -374193,12 +374193,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -374209,12 +374209,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -374227,12 +374227,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -374243,12 +374243,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -374261,12 +374261,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -374277,12 +374277,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -374295,12 +374295,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -374311,12 +374311,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -374329,12 +374329,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -374345,12 +374345,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -374363,12 +374363,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -374379,12 +374379,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -374397,12 +374397,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -374413,12 +374413,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -374431,12 +374431,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -374447,12 +374447,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -374465,12 +374465,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -374481,12 +374481,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -374499,12 +374499,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -374515,12 +374515,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -374533,12 +374533,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -374549,12 +374549,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -374567,12 +374567,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -374583,12 +374583,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -374601,12 +374601,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -374617,12 +374617,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -374635,12 +374635,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -374651,12 +374651,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -374669,12 +374669,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -374685,12 +374685,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -374703,12 +374703,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -374719,12 +374719,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -374737,12 +374737,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -374753,12 +374753,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -374771,12 +374771,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -374787,12 +374787,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -374805,12 +374805,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -374821,12 +374821,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -374839,12 +374839,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -374855,12 +374855,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -374873,12 +374873,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -374889,12 +374889,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -374907,12 +374907,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -374923,12 +374923,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -374941,12 +374941,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -374957,12 +374957,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -374975,12 +374975,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -374991,12 +374991,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -375009,12 +375009,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -375025,12 +375025,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -375043,12 +375043,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -375059,12 +375059,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -375077,12 +375077,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -375093,12 +375093,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -375111,12 +375111,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -375127,12 +375127,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -375145,12 +375145,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -375161,12 +375161,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -375179,12 +375179,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -375195,12 +375195,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -375213,12 +375213,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -375229,12 +375229,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -375247,12 +375247,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -375263,12 +375263,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -375281,12 +375281,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -375297,12 +375297,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -375315,12 +375315,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -375331,12 +375331,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -375349,12 +375349,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -375365,12 +375365,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -375383,12 +375383,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -375399,12 +375399,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -375417,12 +375417,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 17
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -375433,12 +375433,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 17, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -375451,12 +375451,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 37
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -375467,12 +375467,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 37, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -375485,12 +375485,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 77
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -375501,12 +375501,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 77, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -375519,12 +375519,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 77
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -375535,12 +375535,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 77, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -375553,12 +375553,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -375569,12 +375569,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -375587,12 +375587,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -375603,12 +375603,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -375621,12 +375621,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -375637,12 +375637,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -375655,12 +375655,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -375671,12 +375671,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -375689,12 +375689,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -375705,12 +375705,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -375723,12 +375723,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -375739,12 +375739,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -375757,12 +375757,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -375773,12 +375773,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -375791,12 +375791,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -375807,12 +375807,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -375825,12 +375825,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -375841,12 +375841,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -375859,12 +375859,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -375875,12 +375875,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -375893,12 +375893,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -375909,12 +375909,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -375927,12 +375927,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -375943,12 +375943,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -375961,12 +375961,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -375977,12 +375977,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -375995,12 +375995,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -376011,12 +376011,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -376029,12 +376029,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -376045,12 +376045,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -376063,12 +376063,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -376079,12 +376079,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -376097,12 +376097,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -376113,12 +376113,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -376131,12 +376131,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -376147,12 +376147,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -376165,12 +376165,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -376181,12 +376181,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -376199,12 +376199,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -376215,12 +376215,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -376233,12 +376233,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -376249,12 +376249,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -376267,12 +376267,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -376283,12 +376283,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -376301,12 +376301,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -376317,12 +376317,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -376335,12 +376335,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -376351,12 +376351,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -376369,12 +376369,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -376385,12 +376385,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -376403,12 +376403,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -376419,12 +376419,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -376437,12 +376437,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -376453,12 +376453,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -376471,12 +376471,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -376487,12 +376487,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -376505,12 +376505,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -376521,12 +376521,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -376539,12 +376539,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -376555,12 +376555,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -376573,12 +376573,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -376589,12 +376589,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -376607,12 +376607,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -376623,12 +376623,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -376641,12 +376641,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -376657,12 +376657,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -376675,12 +376675,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -376691,12 +376691,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -376709,12 +376709,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -376725,12 +376725,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -376743,12 +376743,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -376759,12 +376759,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -376777,12 +376777,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -376793,12 +376793,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -376811,12 +376811,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -376827,12 +376827,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -376845,12 +376845,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -376861,12 +376861,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -376879,12 +376879,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -376895,12 +376895,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -376913,12 +376913,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -376929,12 +376929,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -376947,12 +376947,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -376963,12 +376963,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -376981,12 +376981,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = f1
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -376997,12 +376997,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f1, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -377015,12 +377015,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = f3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -377031,12 +377031,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f3, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -377049,12 +377049,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = f7
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -377065,12 +377065,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f7, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -377083,12 +377083,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = f7
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -377099,12 +377099,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = f7, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -377117,12 +377117,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -377133,12 +377133,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -377151,12 +377151,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -377167,12 +377167,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -377185,12 +377185,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -377201,12 +377201,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -377219,12 +377219,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -377235,12 +377235,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -377253,12 +377253,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -377269,12 +377269,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -377287,12 +377287,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -377303,12 +377303,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -377321,12 +377321,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -377337,12 +377337,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -377355,12 +377355,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -377371,12 +377371,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -377389,12 +377389,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -377405,12 +377405,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -377423,12 +377423,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -377439,12 +377439,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -377457,12 +377457,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -377473,12 +377473,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -377491,12 +377491,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -377507,12 +377507,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -377525,12 +377525,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -377541,12 +377541,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -377559,12 +377559,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -377575,12 +377575,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -377593,12 +377593,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -377609,12 +377609,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -377627,12 +377627,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -377643,12 +377643,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -377661,12 +377661,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -377677,12 +377677,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -377695,12 +377695,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -377711,12 +377711,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -377729,12 +377729,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -377745,12 +377745,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -377763,12 +377763,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -377779,12 +377779,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -377797,12 +377797,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -377813,12 +377813,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -377831,12 +377831,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 36
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -377847,12 +377847,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -377865,12 +377865,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -377881,12 +377881,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -377899,12 +377899,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -377915,12 +377915,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -377933,12 +377933,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -377949,12 +377949,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -377967,12 +377967,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -377983,12 +377983,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -378001,12 +378001,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -378017,12 +378017,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -378035,12 +378035,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -378051,12 +378051,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -378069,12 +378069,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -378085,12 +378085,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -378103,12 +378103,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -378119,12 +378119,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -378137,12 +378137,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -378153,12 +378153,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -378171,12 +378171,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -378187,12 +378187,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -378205,12 +378205,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -378221,12 +378221,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -378239,12 +378239,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -378255,12 +378255,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -378273,12 +378273,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -378289,12 +378289,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -378307,12 +378307,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -378323,12 +378323,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -378341,12 +378341,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -378357,12 +378357,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -378375,12 +378375,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -378391,12 +378391,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -378409,12 +378409,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -378425,12 +378425,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -378443,12 +378443,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -378459,12 +378459,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -378477,12 +378477,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -378493,12 +378493,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -378511,12 +378511,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -378527,12 +378527,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -378545,12 +378545,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -378561,12 +378561,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -378579,12 +378579,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -378595,12 +378595,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -378613,12 +378613,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -378629,12 +378629,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -378647,12 +378647,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -378663,12 +378663,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -378681,12 +378681,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -378697,12 +378697,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -378715,12 +378715,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -378731,12 +378731,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -378749,12 +378749,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -378765,12 +378765,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -378783,12 +378783,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -378799,12 +378799,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -378817,12 +378817,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -378833,12 +378833,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -378851,12 +378851,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -378867,12 +378867,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -378885,12 +378885,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -378901,12 +378901,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -378919,12 +378919,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -378935,12 +378935,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -378953,12 +378953,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -378969,12 +378969,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -378987,12 +378987,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -379003,12 +379003,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -379021,12 +379021,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -379037,12 +379037,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -379055,12 +379055,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -379071,12 +379071,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -379089,12 +379089,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -379105,12 +379105,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -379123,12 +379123,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -379139,12 +379139,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -379157,12 +379157,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -379173,12 +379173,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -379191,12 +379191,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -379207,12 +379207,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -379225,12 +379225,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -379241,12 +379241,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -379259,12 +379259,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -379275,12 +379275,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -379293,12 +379293,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -379309,12 +379309,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -379327,12 +379327,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -379343,12 +379343,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -379361,12 +379361,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -379377,12 +379377,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -379395,12 +379395,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -379411,12 +379411,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -379429,12 +379429,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -379445,12 +379445,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -379463,12 +379463,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -379479,12 +379479,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -379497,12 +379497,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -379513,12 +379513,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -379531,12 +379531,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -379547,12 +379547,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -379565,12 +379565,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -379581,12 +379581,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -379599,12 +379599,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -379615,12 +379615,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -379633,12 +379633,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -379649,12 +379649,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -379667,12 +379667,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -379683,12 +379683,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -379701,12 +379701,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -379717,12 +379717,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -379735,12 +379735,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -379751,12 +379751,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -379769,12 +379769,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -379785,12 +379785,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -379803,12 +379803,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -379819,12 +379819,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -379837,12 +379837,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -379853,12 +379853,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -379871,12 +379871,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -379887,12 +379887,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -379905,12 +379905,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -379921,12 +379921,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -379939,12 +379939,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -379955,12 +379955,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -379973,12 +379973,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -379989,12 +379989,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -380007,12 +380007,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -380023,12 +380023,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -380041,12 +380041,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -380057,12 +380057,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -380075,12 +380075,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -380091,12 +380091,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -380109,12 +380109,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 8f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -380125,12 +380125,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 8f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -380143,12 +380143,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 8f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -380159,12 +380159,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 8f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -380177,12 +380177,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 8f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -380193,12 +380193,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 8f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -380211,12 +380211,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 8f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -380227,12 +380227,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 8f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -380245,12 +380245,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -380261,12 +380261,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -380279,12 +380279,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -380295,12 +380295,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -380313,12 +380313,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -380329,12 +380329,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -380347,12 +380347,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -380363,12 +380363,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -380381,12 +380381,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -380397,12 +380397,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -380415,12 +380415,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -380431,12 +380431,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -380449,12 +380449,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -380465,12 +380465,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -380483,12 +380483,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -380499,12 +380499,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -380517,12 +380517,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -380533,12 +380533,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -380551,12 +380551,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -380567,12 +380567,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -380585,12 +380585,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -380601,12 +380601,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -380619,12 +380619,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -380635,12 +380635,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -380653,12 +380653,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -380669,12 +380669,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -380687,12 +380687,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -380703,12 +380703,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -380721,12 +380721,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -380737,12 +380737,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -380755,12 +380755,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -380771,12 +380771,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -380789,12 +380789,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -380805,12 +380805,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -380823,12 +380823,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -380839,12 +380839,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -380857,12 +380857,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -380873,12 +380873,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -380891,12 +380891,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -380907,12 +380907,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -380925,12 +380925,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -380941,12 +380941,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -380959,12 +380959,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -380975,12 +380975,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -380993,12 +380993,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -381009,12 +381009,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -381027,12 +381027,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -381043,12 +381043,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -381061,12 +381061,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -381077,12 +381077,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -381095,12 +381095,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -381111,12 +381111,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -381129,12 +381129,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -381145,12 +381145,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -381163,12 +381163,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -381179,12 +381179,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -381197,12 +381197,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -381213,12 +381213,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -381231,12 +381231,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -381247,12 +381247,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -381265,12 +381265,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -381281,12 +381281,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -381299,12 +381299,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -381315,12 +381315,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -381333,12 +381333,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -381349,12 +381349,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -381367,12 +381367,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -381383,12 +381383,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -381401,12 +381401,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -381417,12 +381417,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -381435,12 +381435,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -381451,12 +381451,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -381469,12 +381469,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -381485,12 +381485,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -381503,12 +381503,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -381519,12 +381519,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -381537,12 +381537,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -381553,12 +381553,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -381571,12 +381571,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -381587,12 +381587,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -381605,12 +381605,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -381621,12 +381621,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -381639,12 +381639,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -381655,12 +381655,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -381673,12 +381673,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -381689,12 +381689,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -381707,12 +381707,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 4f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -381723,12 +381723,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 4f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -381741,12 +381741,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 4f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -381757,12 +381757,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 4f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -381775,12 +381775,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 4f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -381791,12 +381791,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 4f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -381809,12 +381809,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -381825,12 +381825,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -381843,12 +381843,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -381859,12 +381859,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -381877,12 +381877,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -381893,12 +381893,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -381911,12 +381911,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -381927,12 +381927,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -381945,12 +381945,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -381961,12 +381961,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -381979,12 +381979,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -381995,12 +381995,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -382013,12 +382013,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -382029,12 +382029,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -382047,12 +382047,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -382063,12 +382063,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -382081,12 +382081,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -382097,12 +382097,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -382115,12 +382115,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -382131,12 +382131,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -382149,12 +382149,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -382165,12 +382165,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -382183,12 +382183,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -382199,12 +382199,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -382217,12 +382217,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -382233,12 +382233,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -382251,12 +382251,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -382267,12 +382267,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -382285,12 +382285,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -382301,12 +382301,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -382319,12 +382319,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -382335,12 +382335,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -382353,12 +382353,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -382369,12 +382369,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -382387,12 +382387,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -382403,12 +382403,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -382421,12 +382421,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -382437,12 +382437,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -382455,12 +382455,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -382471,12 +382471,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -382489,12 +382489,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -382505,12 +382505,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -382523,12 +382523,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -382539,12 +382539,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -382557,12 +382557,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -382573,12 +382573,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -382591,12 +382591,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -382607,12 +382607,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -382625,12 +382625,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -382641,12 +382641,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -382659,12 +382659,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -382675,12 +382675,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -382693,12 +382693,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -382709,12 +382709,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -382727,12 +382727,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -382743,12 +382743,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -382761,12 +382761,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -382777,12 +382777,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -382795,12 +382795,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -382811,12 +382811,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -382829,12 +382829,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -382845,12 +382845,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -382863,12 +382863,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -382879,12 +382879,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -382897,12 +382897,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -382913,12 +382913,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -382931,12 +382931,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -382947,12 +382947,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -382965,12 +382965,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -382981,12 +382981,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -382999,12 +382999,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -383015,12 +383015,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -383033,12 +383033,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -383049,12 +383049,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -383067,12 +383067,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -383083,12 +383083,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -383101,12 +383101,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -383117,12 +383117,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -383135,12 +383135,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -383151,12 +383151,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -383169,12 +383169,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -383185,12 +383185,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -383203,12 +383203,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -383219,12 +383219,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -383237,12 +383237,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c7
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -383253,12 +383253,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = c7, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -383271,12 +383271,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = cf
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -383287,12 +383287,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = cf, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -383305,12 +383305,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = cf
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -383321,12 +383321,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = cf, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -383339,12 +383339,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = cf
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -383355,12 +383355,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = cf, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -383373,12 +383373,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -383389,12 +383389,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -383407,12 +383407,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -383423,12 +383423,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -383441,12 +383441,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -383457,12 +383457,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -383475,12 +383475,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -383491,12 +383491,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -383509,12 +383509,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -383525,12 +383525,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -383543,12 +383543,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -383559,12 +383559,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -383577,12 +383577,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -383593,12 +383593,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -383611,12 +383611,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -383627,12 +383627,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -383645,12 +383645,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -383661,12 +383661,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -383679,12 +383679,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -383695,12 +383695,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -383713,12 +383713,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -383729,12 +383729,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -383747,12 +383747,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -383763,12 +383763,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -383781,12 +383781,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -383797,12 +383797,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -383815,12 +383815,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -383831,12 +383831,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -383849,12 +383849,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -383865,12 +383865,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -383883,12 +383883,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -383899,12 +383899,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -383917,12 +383917,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -383933,12 +383933,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -383951,12 +383951,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -383967,12 +383967,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -383985,12 +383985,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -384001,12 +384001,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -384019,12 +384019,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -384035,12 +384035,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -384053,12 +384053,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -384069,12 +384069,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -384087,12 +384087,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -384103,12 +384103,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -384121,12 +384121,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -384137,12 +384137,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -384155,12 +384155,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -384171,12 +384171,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -384189,12 +384189,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -384205,12 +384205,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -384223,12 +384223,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -384239,12 +384239,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -384257,12 +384257,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -384273,12 +384273,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -384291,12 +384291,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -384307,12 +384307,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -384325,12 +384325,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -384341,12 +384341,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -384359,12 +384359,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -384375,12 +384375,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -384393,12 +384393,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -384409,12 +384409,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -384427,12 +384427,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -384443,12 +384443,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -384461,12 +384461,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -384477,12 +384477,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -384495,12 +384495,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -384511,12 +384511,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -384529,12 +384529,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -384545,12 +384545,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -384563,12 +384563,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -384579,12 +384579,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -384597,12 +384597,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -384613,12 +384613,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -384631,12 +384631,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -384647,12 +384647,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -384665,12 +384665,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -384681,12 +384681,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -384699,12 +384699,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -384715,12 +384715,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -384733,12 +384733,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -384749,12 +384749,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -384767,12 +384767,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -384783,12 +384783,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -384801,12 +384801,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -384817,12 +384817,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -384835,12 +384835,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 2f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -384851,12 +384851,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 2f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -384869,12 +384869,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 2f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -384885,12 +384885,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 2f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -384903,12 +384903,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 2f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -384919,12 +384919,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 2f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -384937,12 +384937,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -384953,12 +384953,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -384971,12 +384971,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -384987,12 +384987,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -385005,12 +385005,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -385021,12 +385021,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -385039,12 +385039,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -385055,12 +385055,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -385073,12 +385073,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -385089,12 +385089,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -385107,12 +385107,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -385123,12 +385123,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -385141,12 +385141,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -385157,12 +385157,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -385175,12 +385175,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -385191,12 +385191,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -385209,12 +385209,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -385225,12 +385225,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -385243,12 +385243,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -385259,12 +385259,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -385277,12 +385277,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -385293,12 +385293,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -385311,12 +385311,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -385327,12 +385327,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -385345,12 +385345,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -385361,12 +385361,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -385379,12 +385379,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -385395,12 +385395,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -385413,12 +385413,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -385429,12 +385429,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -385447,12 +385447,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -385463,12 +385463,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -385481,12 +385481,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -385497,12 +385497,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -385515,12 +385515,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -385531,12 +385531,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -385549,12 +385549,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -385565,12 +385565,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -385583,12 +385583,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -385599,12 +385599,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -385617,12 +385617,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -385633,12 +385633,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -385651,12 +385651,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -385667,12 +385667,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -385685,12 +385685,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -385701,12 +385701,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -385719,12 +385719,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -385735,12 +385735,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -385753,12 +385753,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -385769,12 +385769,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -385787,12 +385787,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -385803,12 +385803,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -385821,12 +385821,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -385837,12 +385837,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -385855,12 +385855,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -385871,12 +385871,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -385889,12 +385889,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -385905,12 +385905,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -385923,12 +385923,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -385939,12 +385939,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -385957,12 +385957,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -385973,12 +385973,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -385991,12 +385991,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -386007,12 +386007,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -386025,12 +386025,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -386041,12 +386041,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -386059,12 +386059,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -386075,12 +386075,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -386093,12 +386093,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -386109,12 +386109,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -386127,12 +386127,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -386143,12 +386143,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -386161,12 +386161,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -386177,12 +386177,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -386195,12 +386195,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -386211,12 +386211,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -386229,12 +386229,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -386245,12 +386245,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -386263,12 +386263,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -386279,12 +386279,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -386297,12 +386297,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -386313,12 +386313,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -386331,12 +386331,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -386347,12 +386347,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -386365,12 +386365,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 8f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -386381,12 +386381,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 8f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -386399,12 +386399,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 8f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -386415,12 +386415,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 8f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -386433,12 +386433,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = af
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -386449,12 +386449,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = af, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -386467,12 +386467,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = af
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -386483,12 +386483,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = af, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -386501,12 +386501,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -386517,12 +386517,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -386535,12 +386535,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -386551,12 +386551,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -386569,12 +386569,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -386585,12 +386585,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -386603,12 +386603,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -386619,12 +386619,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -386637,12 +386637,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -386653,12 +386653,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -386671,12 +386671,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -386687,12 +386687,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -386705,12 +386705,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -386721,12 +386721,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -386739,12 +386739,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -386755,12 +386755,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -386773,12 +386773,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -386789,12 +386789,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -386807,12 +386807,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -386823,12 +386823,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -386841,12 +386841,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -386857,12 +386857,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -386875,12 +386875,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -386891,12 +386891,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -386909,12 +386909,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -386925,12 +386925,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -386943,12 +386943,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -386959,12 +386959,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -386977,12 +386977,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -386993,12 +386993,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -387011,12 +387011,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -387027,12 +387027,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -387045,12 +387045,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -387061,12 +387061,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -387079,12 +387079,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -387095,12 +387095,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -387113,12 +387113,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -387129,12 +387129,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -387147,12 +387147,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -387163,12 +387163,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -387181,12 +387181,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -387197,12 +387197,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -387215,12 +387215,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -387231,12 +387231,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -387249,12 +387249,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -387265,12 +387265,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -387283,12 +387283,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -387299,12 +387299,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -387317,12 +387317,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -387333,12 +387333,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -387351,12 +387351,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -387367,12 +387367,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -387385,12 +387385,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -387401,12 +387401,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -387419,12 +387419,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -387435,12 +387435,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -387453,12 +387453,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -387469,12 +387469,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -387487,12 +387487,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -387503,12 +387503,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -387521,12 +387521,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -387537,12 +387537,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -387555,12 +387555,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -387571,12 +387571,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -387589,12 +387589,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -387605,12 +387605,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -387623,12 +387623,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -387639,12 +387639,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -387657,12 +387657,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -387673,12 +387673,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -387691,12 +387691,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -387707,12 +387707,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -387725,12 +387725,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -387741,12 +387741,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -387759,12 +387759,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -387775,12 +387775,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -387793,12 +387793,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -387809,12 +387809,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -387827,12 +387827,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -387843,12 +387843,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -387861,12 +387861,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -387877,12 +387877,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -387895,12 +387895,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -387911,12 +387911,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -387929,12 +387929,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -387945,12 +387945,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -387963,12 +387963,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 2f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -387979,12 +387979,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 2f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -387997,12 +387997,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 6f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -388013,12 +388013,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 6f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -388031,12 +388031,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 6f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -388047,12 +388047,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 6f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -388065,12 +388065,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -388081,12 +388081,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -388099,12 +388099,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -388115,12 +388115,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -388133,12 +388133,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -388149,12 +388149,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -388167,12 +388167,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -388183,12 +388183,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -388201,12 +388201,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -388217,12 +388217,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -388235,12 +388235,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -388251,12 +388251,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -388269,12 +388269,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -388285,12 +388285,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -388303,12 +388303,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -388319,12 +388319,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -388337,12 +388337,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -388353,12 +388353,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -388371,12 +388371,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -388387,12 +388387,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -388405,12 +388405,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -388421,12 +388421,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -388439,12 +388439,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -388455,12 +388455,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -388473,12 +388473,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -388489,12 +388489,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -388507,12 +388507,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -388523,12 +388523,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -388541,12 +388541,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -388557,12 +388557,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -388575,12 +388575,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -388591,12 +388591,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -388609,12 +388609,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -388625,12 +388625,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -388643,12 +388643,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -388659,12 +388659,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -388677,12 +388677,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -388693,12 +388693,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -388711,12 +388711,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -388727,12 +388727,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -388745,12 +388745,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -388761,12 +388761,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -388779,12 +388779,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -388795,12 +388795,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -388813,12 +388813,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -388829,12 +388829,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -388847,12 +388847,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -388863,12 +388863,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -388881,12 +388881,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -388897,12 +388897,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -388915,12 +388915,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -388931,12 +388931,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -388949,12 +388949,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -388965,12 +388965,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -388983,12 +388983,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -388999,12 +388999,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -389017,12 +389017,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -389033,12 +389033,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -389051,12 +389051,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -389067,12 +389067,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -389085,12 +389085,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -389101,12 +389101,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -389119,12 +389119,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -389135,12 +389135,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -389153,12 +389153,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -389169,12 +389169,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -389187,12 +389187,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -389203,12 +389203,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -389221,12 +389221,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -389237,12 +389237,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -389255,12 +389255,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -389271,12 +389271,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -389289,12 +389289,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -389305,12 +389305,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -389323,12 +389323,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -389339,12 +389339,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -389357,12 +389357,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -389373,12 +389373,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -389391,12 +389391,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -389407,12 +389407,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -389425,12 +389425,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -389441,12 +389441,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -389459,12 +389459,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -389475,12 +389475,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -389493,12 +389493,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = e3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -389509,12 +389509,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e3, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -389527,12 +389527,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = e7
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -389543,12 +389543,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = e7, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -389561,12 +389561,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = ef
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -389577,12 +389577,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = ef, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -389595,12 +389595,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = ef
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -389611,12 +389611,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = ef, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -389629,12 +389629,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -389645,12 +389645,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -389663,12 +389663,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -389679,12 +389679,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -389697,12 +389697,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -389713,12 +389713,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -389731,12 +389731,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -389747,12 +389747,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -389765,12 +389765,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -389781,12 +389781,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -389799,12 +389799,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -389815,12 +389815,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -389833,12 +389833,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -389849,12 +389849,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -389867,12 +389867,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -389883,12 +389883,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -389901,12 +389901,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -389917,12 +389917,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -389935,12 +389935,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -389951,12 +389951,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -389969,12 +389969,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -389985,12 +389985,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -390003,12 +390003,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -390019,12 +390019,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -390037,12 +390037,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -390053,12 +390053,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -390071,12 +390071,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -390087,12 +390087,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -390105,12 +390105,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -390121,12 +390121,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -390139,12 +390139,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -390155,12 +390155,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -390173,12 +390173,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -390189,12 +390189,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -390207,12 +390207,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -390223,12 +390223,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -390241,12 +390241,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -390257,12 +390257,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -390275,12 +390275,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -390291,12 +390291,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -390309,12 +390309,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -390325,12 +390325,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -390343,12 +390343,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -390359,12 +390359,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -390377,12 +390377,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -390393,12 +390393,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -390411,12 +390411,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -390427,12 +390427,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -390445,12 +390445,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -390461,12 +390461,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -390479,12 +390479,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -390495,12 +390495,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -390513,12 +390513,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -390529,12 +390529,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0c, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -390547,12 +390547,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -390563,12 +390563,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -390581,12 +390581,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -390597,12 +390597,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -390615,12 +390615,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -390631,12 +390631,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -390649,12 +390649,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -390665,12 +390665,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -390683,12 +390683,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -390699,12 +390699,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -390717,12 +390717,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -390733,12 +390733,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -390751,12 +390751,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -390767,12 +390767,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -390785,12 +390785,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -390801,12 +390801,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -390819,12 +390819,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -390835,12 +390835,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -390853,12 +390853,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -390869,12 +390869,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -390887,12 +390887,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -390903,12 +390903,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -390921,12 +390921,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -390937,12 +390937,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -390955,12 +390955,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -390971,12 +390971,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -390989,12 +390989,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -391005,12 +391005,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -391023,12 +391023,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -391039,12 +391039,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -391057,12 +391057,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -391073,12 +391073,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -391091,12 +391091,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -391107,12 +391107,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -391125,12 +391125,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -391141,12 +391141,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -391159,12 +391159,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -391175,12 +391175,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -391193,12 +391193,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -391209,12 +391209,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -391227,12 +391227,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -391243,12 +391243,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -391261,12 +391261,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -391277,12 +391277,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -391295,12 +391295,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -391311,12 +391311,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -391329,12 +391329,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -391345,12 +391345,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -391363,12 +391363,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -391379,12 +391379,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -391397,12 +391397,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -391413,12 +391413,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -391431,12 +391431,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -391447,12 +391447,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -391465,12 +391465,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -391481,12 +391481,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -391499,12 +391499,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -391515,12 +391515,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -391533,12 +391533,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -391549,12 +391549,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -391567,12 +391567,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -391583,12 +391583,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -391601,12 +391601,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -391617,12 +391617,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -391635,12 +391635,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -391651,12 +391651,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -391669,12 +391669,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -391685,12 +391685,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -391703,12 +391703,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -391719,12 +391719,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -391737,12 +391737,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -391753,12 +391753,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -391771,12 +391771,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -391787,12 +391787,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -391805,12 +391805,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -391821,12 +391821,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -391839,12 +391839,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -391855,12 +391855,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -391873,12 +391873,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -391889,12 +391889,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -391907,12 +391907,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -391923,12 +391923,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -391941,12 +391941,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -391957,12 +391957,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -391975,12 +391975,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -391991,12 +391991,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -392009,12 +392009,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -392025,12 +392025,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -392043,12 +392043,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -392059,12 +392059,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -392077,12 +392077,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -392093,12 +392093,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -392111,12 +392111,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -392127,12 +392127,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -392145,12 +392145,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -392161,12 +392161,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -392179,12 +392179,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -392195,12 +392195,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -392213,12 +392213,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -392229,12 +392229,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -392247,12 +392247,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -392263,12 +392263,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -392281,12 +392281,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -392297,12 +392297,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -392315,12 +392315,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -392331,12 +392331,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -392349,12 +392349,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -392365,12 +392365,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -392383,12 +392383,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -392399,12 +392399,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -392417,12 +392417,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -392433,12 +392433,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -392451,12 +392451,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -392467,12 +392467,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -392485,12 +392485,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -392501,12 +392501,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -392519,12 +392519,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -392535,12 +392535,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -392553,12 +392553,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -392569,12 +392569,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -392587,12 +392587,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -392603,12 +392603,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -392621,12 +392621,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -392637,12 +392637,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -392655,12 +392655,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 9f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -392671,12 +392671,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 9f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -392689,12 +392689,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 9f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -392705,12 +392705,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 9f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -392723,12 +392723,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 9f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -392739,12 +392739,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 9f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -392757,12 +392757,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -392773,12 +392773,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -392791,12 +392791,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -392807,12 +392807,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -392825,12 +392825,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -392841,12 +392841,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -392859,12 +392859,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -392875,12 +392875,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -392893,12 +392893,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -392909,12 +392909,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -392927,12 +392927,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -392943,12 +392943,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -392961,12 +392961,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -392977,12 +392977,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -392995,12 +392995,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -393011,12 +393011,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -393029,12 +393029,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -393045,12 +393045,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -393063,12 +393063,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -393079,12 +393079,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -393097,12 +393097,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -393113,12 +393113,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -393131,12 +393131,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -393147,12 +393147,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -393165,12 +393165,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -393181,12 +393181,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -393199,12 +393199,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -393215,12 +393215,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -393233,12 +393233,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -393249,12 +393249,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -393267,12 +393267,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -393283,12 +393283,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -393301,12 +393301,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -393317,12 +393317,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -393335,12 +393335,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -393351,12 +393351,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -393369,12 +393369,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -393385,12 +393385,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -393403,12 +393403,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -393419,12 +393419,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -393437,12 +393437,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -393453,12 +393453,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -393471,12 +393471,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -393487,12 +393487,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -393505,12 +393505,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -393521,12 +393521,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -393539,12 +393539,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -393555,12 +393555,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -393573,12 +393573,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -393589,12 +393589,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -393607,12 +393607,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -393623,12 +393623,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -393641,12 +393641,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -393657,12 +393657,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -393675,12 +393675,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -393691,12 +393691,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -393709,12 +393709,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -393725,12 +393725,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -393743,12 +393743,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -393759,12 +393759,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -393777,12 +393777,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -393793,12 +393793,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -393811,12 +393811,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -393827,12 +393827,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -393845,12 +393845,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -393861,12 +393861,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -393879,12 +393879,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -393895,12 +393895,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -393913,12 +393913,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -393929,12 +393929,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -393947,12 +393947,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -393963,12 +393963,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -393981,12 +393981,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -393997,12 +393997,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -394015,12 +394015,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -394031,12 +394031,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -394049,12 +394049,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -394065,12 +394065,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -394083,12 +394083,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -394099,12 +394099,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -394117,12 +394117,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -394133,12 +394133,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -394151,12 +394151,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -394167,12 +394167,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -394185,12 +394185,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -394201,12 +394201,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -394219,12 +394219,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -394235,12 +394235,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -394253,12 +394253,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 5f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -394269,12 +394269,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 5f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -394287,12 +394287,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 5f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -394303,12 +394303,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 5f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -394321,12 +394321,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -394337,12 +394337,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -394355,12 +394355,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -394371,12 +394371,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -394389,12 +394389,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -394405,12 +394405,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -394423,12 +394423,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -394439,12 +394439,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -394457,12 +394457,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -394473,12 +394473,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -394491,12 +394491,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -394507,12 +394507,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -394525,12 +394525,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -394541,12 +394541,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -394559,12 +394559,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -394575,12 +394575,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -394593,12 +394593,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -394609,12 +394609,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -394627,12 +394627,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -394643,12 +394643,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -394661,12 +394661,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -394677,12 +394677,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -394695,12 +394695,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -394711,12 +394711,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -394729,12 +394729,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -394745,12 +394745,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -394763,12 +394763,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -394779,12 +394779,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -394797,12 +394797,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -394813,12 +394813,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -394831,12 +394831,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -394847,12 +394847,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -394865,12 +394865,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -394881,12 +394881,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -394899,12 +394899,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -394915,12 +394915,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -394933,12 +394933,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -394949,12 +394949,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -394967,12 +394967,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -394983,12 +394983,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -395001,12 +395001,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -395017,12 +395017,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -395035,12 +395035,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -395051,12 +395051,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -395069,12 +395069,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -395085,12 +395085,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -395103,12 +395103,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -395119,12 +395119,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -395137,12 +395137,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -395153,12 +395153,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -395171,12 +395171,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -395187,12 +395187,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -395205,12 +395205,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -395221,12 +395221,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -395239,12 +395239,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -395255,12 +395255,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -395273,12 +395273,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -395289,12 +395289,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -395307,12 +395307,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -395323,12 +395323,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -395341,12 +395341,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -395357,12 +395357,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -395375,12 +395375,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -395391,12 +395391,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -395409,12 +395409,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -395425,12 +395425,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -395443,12 +395443,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -395459,12 +395459,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -395477,12 +395477,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -395493,12 +395493,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -395511,12 +395511,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -395527,12 +395527,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -395545,12 +395545,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -395561,12 +395561,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -395579,12 +395579,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -395595,12 +395595,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -395613,12 +395613,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -395629,12 +395629,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -395647,12 +395647,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -395663,12 +395663,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -395681,12 +395681,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -395697,12 +395697,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -395715,12 +395715,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -395731,12 +395731,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -395749,12 +395749,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -395765,12 +395765,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -395783,12 +395783,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = cf
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -395799,12 +395799,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = cf, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -395817,12 +395817,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = df
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -395833,12 +395833,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = df, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -395851,12 +395851,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = df
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -395867,12 +395867,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = df, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -395885,12 +395885,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -395901,12 +395901,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -395919,12 +395919,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -395935,12 +395935,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -395953,12 +395953,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -395969,12 +395969,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -395987,12 +395987,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -396003,12 +396003,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -396021,12 +396021,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -396037,12 +396037,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -396055,12 +396055,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -396071,12 +396071,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -396089,12 +396089,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -396105,12 +396105,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -396123,12 +396123,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -396139,12 +396139,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -396157,12 +396157,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -396173,12 +396173,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -396191,12 +396191,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -396207,12 +396207,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -396225,12 +396225,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -396241,12 +396241,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -396259,12 +396259,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -396275,12 +396275,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -396293,12 +396293,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -396309,12 +396309,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -396327,12 +396327,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -396343,12 +396343,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -396361,12 +396361,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -396377,12 +396377,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -396395,12 +396395,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -396411,12 +396411,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -396429,12 +396429,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -396445,12 +396445,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -396463,12 +396463,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -396479,12 +396479,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -396497,12 +396497,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -396513,12 +396513,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -396531,12 +396531,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -396547,12 +396547,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -396565,12 +396565,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -396581,12 +396581,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -396599,12 +396599,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -396615,12 +396615,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -396633,12 +396633,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -396649,12 +396649,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -396667,12 +396667,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -396683,12 +396683,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -396701,12 +396701,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -396717,12 +396717,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -396735,12 +396735,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -396751,12 +396751,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -396769,12 +396769,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -396785,12 +396785,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -396803,12 +396803,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -396819,12 +396819,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -396837,12 +396837,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -396853,12 +396853,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -396871,12 +396871,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -396887,12 +396887,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -396905,12 +396905,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -396921,12 +396921,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -396939,12 +396939,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -396955,12 +396955,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -396973,12 +396973,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -396989,12 +396989,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -397007,12 +397007,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -397023,12 +397023,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -397041,12 +397041,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -397057,12 +397057,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -397075,12 +397075,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -397091,12 +397091,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -397109,12 +397109,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -397125,12 +397125,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -397143,12 +397143,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -397159,12 +397159,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -397177,12 +397177,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -397193,12 +397193,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -397211,12 +397211,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -397227,12 +397227,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -397245,12 +397245,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -397261,12 +397261,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -397279,12 +397279,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -397295,12 +397295,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -397313,12 +397313,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -397329,12 +397329,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -397347,12 +397347,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 3f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -397363,12 +397363,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -397381,12 +397381,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 3f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -397397,12 +397397,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -397415,12 +397415,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 3f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -397431,12 +397431,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -397449,12 +397449,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -397465,12 +397465,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -397483,12 +397483,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -397499,12 +397499,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -397517,12 +397517,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -397533,12 +397533,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -397551,12 +397551,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -397567,12 +397567,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -397585,12 +397585,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -397601,12 +397601,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -397619,12 +397619,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -397635,12 +397635,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -397653,12 +397653,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -397669,12 +397669,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -397687,12 +397687,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -397703,12 +397703,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -397721,12 +397721,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -397737,12 +397737,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -397755,12 +397755,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -397771,12 +397771,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -397789,12 +397789,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -397805,12 +397805,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -397823,12 +397823,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -397839,12 +397839,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -397857,12 +397857,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -397873,12 +397873,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -397891,12 +397891,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -397907,12 +397907,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -397925,12 +397925,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -397941,12 +397941,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -397959,12 +397959,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -397975,12 +397975,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -397993,12 +397993,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -398009,12 +398009,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -398027,12 +398027,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -398043,12 +398043,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -398061,12 +398061,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -398077,12 +398077,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -398095,12 +398095,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -398111,12 +398111,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -398129,12 +398129,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -398145,12 +398145,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -398163,12 +398163,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -398179,12 +398179,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -398197,12 +398197,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -398213,12 +398213,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -398231,12 +398231,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -398247,12 +398247,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -398265,12 +398265,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -398281,12 +398281,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -398299,12 +398299,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -398315,12 +398315,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -398333,12 +398333,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -398349,12 +398349,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -398367,12 +398367,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -398383,12 +398383,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -398401,12 +398401,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -398417,12 +398417,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -398435,12 +398435,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -398451,12 +398451,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -398469,12 +398469,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -398485,12 +398485,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -398503,12 +398503,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -398519,12 +398519,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -398537,12 +398537,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -398553,12 +398553,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -398571,12 +398571,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -398587,12 +398587,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -398605,12 +398605,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -398621,12 +398621,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -398639,12 +398639,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -398655,12 +398655,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -398673,12 +398673,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -398689,12 +398689,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -398707,12 +398707,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -398723,12 +398723,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -398741,12 +398741,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -398757,12 +398757,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -398775,12 +398775,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -398791,12 +398791,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -398809,12 +398809,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -398825,12 +398825,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -398843,12 +398843,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -398859,12 +398859,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -398877,12 +398877,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -398893,12 +398893,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -398911,12 +398911,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 3f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -398927,12 +398927,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -398945,12 +398945,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = bf
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -398961,12 +398961,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = bf, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -398979,12 +398979,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = bf
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -398995,12 +398995,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = bf, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -399013,12 +399013,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -399029,12 +399029,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -399047,12 +399047,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -399063,12 +399063,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -399081,12 +399081,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -399097,12 +399097,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -399115,12 +399115,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -399131,12 +399131,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -399149,12 +399149,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -399165,12 +399165,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -399183,12 +399183,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -399199,12 +399199,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -399217,12 +399217,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -399233,12 +399233,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -399251,12 +399251,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -399267,12 +399267,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -399285,12 +399285,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -399301,12 +399301,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -399319,12 +399319,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -399335,12 +399335,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -399353,12 +399353,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 87
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -399369,12 +399369,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -399387,12 +399387,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -399403,12 +399403,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -399421,12 +399421,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -399437,12 +399437,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -399455,12 +399455,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -399471,12 +399471,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -399489,12 +399489,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -399505,12 +399505,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -399523,12 +399523,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -399539,12 +399539,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -399557,12 +399557,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -399573,12 +399573,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -399591,12 +399591,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -399607,12 +399607,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -399625,12 +399625,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -399641,12 +399641,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -399659,12 +399659,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -399675,12 +399675,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -399693,12 +399693,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -399709,12 +399709,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -399727,12 +399727,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -399743,12 +399743,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -399761,12 +399761,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -399777,12 +399777,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -399795,12 +399795,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -399811,12 +399811,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -399829,12 +399829,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -399845,12 +399845,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -399863,12 +399863,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -399879,12 +399879,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -399897,12 +399897,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -399913,12 +399913,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -399931,12 +399931,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -399947,12 +399947,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -399965,12 +399965,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -399981,12 +399981,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -399999,12 +399999,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -400015,12 +400015,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -400033,12 +400033,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -400049,12 +400049,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -400067,12 +400067,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -400083,12 +400083,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -400101,12 +400101,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -400117,12 +400117,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -400135,12 +400135,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -400151,12 +400151,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -400169,12 +400169,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -400185,12 +400185,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -400203,12 +400203,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -400219,12 +400219,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -400237,12 +400237,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -400253,12 +400253,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -400271,12 +400271,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -400287,12 +400287,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -400305,12 +400305,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -400321,12 +400321,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -400339,12 +400339,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -400355,12 +400355,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -400373,12 +400373,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -400389,12 +400389,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -400407,12 +400407,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -400423,12 +400423,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -400441,12 +400441,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -400457,12 +400457,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -400475,12 +400475,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 3f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -400491,12 +400491,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -400509,12 +400509,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 7f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -400525,12 +400525,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 7f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -400543,12 +400543,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 7f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -400559,12 +400559,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 7f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -400577,12 +400577,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -400593,12 +400593,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -400611,12 +400611,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -400627,12 +400627,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -400645,12 +400645,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -400661,12 +400661,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -400679,12 +400679,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -400695,12 +400695,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -400713,12 +400713,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -400729,12 +400729,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -400747,12 +400747,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -400763,12 +400763,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -400781,12 +400781,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -400797,12 +400797,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -400815,12 +400815,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -400831,12 +400831,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -400849,12 +400849,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -400865,12 +400865,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -400883,12 +400883,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -400899,12 +400899,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -400917,12 +400917,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -400933,12 +400933,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -400951,12 +400951,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -400967,12 +400967,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -400985,12 +400985,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -401001,12 +401001,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -401019,12 +401019,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -401035,12 +401035,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -401053,12 +401053,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -401069,12 +401069,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -401087,12 +401087,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -401103,12 +401103,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -401121,12 +401121,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -401137,12 +401137,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -401155,12 +401155,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -401171,12 +401171,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -401189,12 +401189,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -401205,12 +401205,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -401223,12 +401223,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -401239,12 +401239,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -401257,12 +401257,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -401273,12 +401273,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -401291,12 +401291,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -401307,12 +401307,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -401325,12 +401325,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -401341,12 +401341,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -401359,12 +401359,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -401375,12 +401375,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -401393,12 +401393,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -401409,12 +401409,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -401427,12 +401427,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -401443,12 +401443,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -401461,12 +401461,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -401477,12 +401477,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -401495,12 +401495,12 @@
 MS(TA-220:MSCLS-0-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-0-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -401511,12 +401511,12 @@
 MS(TA-220:MSCLS-0-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-0-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -401529,12 +401529,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -401545,12 +401545,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -401563,12 +401563,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -401579,12 +401579,12 @@
 MS(TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -401597,12 +401597,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -401613,12 +401613,12 @@
 MS(TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -401631,12 +401631,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -401647,12 +401647,12 @@
 MS(TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -401665,12 +401665,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 03
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -401681,12 +401681,12 @@
 MS(TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 03, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -401699,12 +401699,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -401715,12 +401715,12 @@
 MS(TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -401733,12 +401733,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -401749,12 +401749,12 @@
 MS(TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -401767,12 +401767,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -401783,12 +401783,12 @@
 MS(TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -401801,12 +401801,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -401817,12 +401817,12 @@
 MS(TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 1
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 02
 MS(TLLI-0x00000023:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 06, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -401835,12 +401835,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -401851,12 +401851,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -401869,12 +401869,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -401885,12 +401885,12 @@
 MS(TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -401903,12 +401903,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -401919,12 +401919,12 @@
 MS(TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -401937,12 +401937,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 07
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -401953,12 +401953,12 @@
 MS(TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 07, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -401971,12 +401971,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -401987,12 +401987,12 @@
 MS(TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 0f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -402005,12 +402005,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -402021,12 +402021,12 @@
 MS(TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 1f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -402039,12 +402039,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 3f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -402055,12 +402055,12 @@
 MS(TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 3f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -402073,12 +402073,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 7f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -402089,12 +402089,12 @@
 MS(TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 7f, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -402107,12 +402107,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = ff
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -402123,12 +402123,12 @@
 MS(TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = ff, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -402141,12 +402141,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -402157,12 +402157,12 @@
 MS(TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -402175,12 +402175,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -402191,12 +402191,12 @@
 MS(TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -402209,12 +402209,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -402225,12 +402225,12 @@
 MS(TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -402243,12 +402243,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -402259,12 +402259,12 @@
 MS(TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -402277,12 +402277,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 0f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -402293,12 +402293,12 @@
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TLLI-0x00000023:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -402311,12 +402311,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -402327,12 +402327,12 @@
 MS(TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -402345,12 +402345,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -402361,12 +402361,12 @@
 MS(TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -402379,12 +402379,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -402395,12 +402395,12 @@
 MS(TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -402413,12 +402413,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -402429,12 +402429,12 @@
 MS(TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -402447,12 +402447,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -402463,12 +402463,12 @@
 MS(TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -402481,12 +402481,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = c3
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -402497,12 +402497,12 @@
 MS(TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 0
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 01, dl_slots = 01
 MS(TLLI-0x00000023:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 0
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=0)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 01, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -402515,12 +402515,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -402531,12 +402531,12 @@
 MS(TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -402549,12 +402549,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -402565,12 +402565,12 @@
 MS(TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -402583,12 +402583,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -402599,12 +402599,12 @@
 MS(TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -402617,12 +402617,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -402633,12 +402633,12 @@
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -402651,12 +402651,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -402667,12 +402667,12 @@
 MS(TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -402685,12 +402685,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -402701,12 +402701,12 @@
 MS(TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -402719,12 +402719,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -402735,12 +402735,12 @@
 MS(TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -402753,12 +402753,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -402769,12 +402769,12 @@
 MS(TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -402787,12 +402787,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -402803,12 +402803,12 @@
 MS(TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -402821,12 +402821,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 1f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -402837,12 +402837,12 @@
 MS(TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TLLI-0x00000023:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -402855,12 +402855,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -402871,12 +402871,12 @@
 MS(TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -402889,12 +402889,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -402905,12 +402905,12 @@
 MS(TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -402923,12 +402923,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -402939,12 +402939,12 @@
 MS(TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -402957,12 +402957,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -402973,12 +402973,12 @@
 MS(TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -402991,12 +402991,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -403007,12 +403007,12 @@
 MS(TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -403025,12 +403025,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3f
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -403041,12 +403041,12 @@
 MS(TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0x00000023:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: Received Event SCHED_ASS
 DL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00000023){NONE}: state_chg to SEND_ASS
@@ -403059,352 +403059,352 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
@@ -403416,152 +403416,152 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
@@ -403573,152 +403573,152 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
@@ -403730,232 +403730,232 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = c0
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = c0
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-17:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-18:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-19:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-20:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = e0
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-21:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
@@ -403967,172 +403967,172 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = c0
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 38, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 38
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 78, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 78
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = f8, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = f8
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 88, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = f8
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 88, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = f8
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
@@ -404144,172 +404144,172 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = c0
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 38, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 38
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 78, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 78
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = f8, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = f8
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 88, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = f8
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 88, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = f8
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
@@ -404322,357 +404322,357 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
@@ -404687,157 +404687,157 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
@@ -404852,157 +404852,157 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
@@ -405018,12 +405018,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405031,12 +405031,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405044,12 +405044,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405057,12 +405057,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405070,12 +405070,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405083,12 +405083,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405096,12 +405096,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405109,12 +405109,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405122,12 +405122,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405135,12 +405135,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405148,12 +405148,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405161,12 +405161,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405174,12 +405174,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405187,12 +405187,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405200,12 +405200,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405213,12 +405213,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405226,12 +405226,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405239,12 +405239,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405252,12 +405252,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405265,12 +405265,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405278,12 +405278,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405291,12 +405291,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405304,12 +405304,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405317,12 +405317,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405330,12 +405330,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405343,12 +405343,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405356,12 +405356,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405369,12 +405369,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405382,12 +405382,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405395,12 +405395,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405408,12 +405408,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405421,12 +405421,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405434,12 +405434,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405447,12 +405447,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405460,12 +405460,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405473,12 +405473,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405486,12 +405486,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405499,12 +405499,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405512,12 +405512,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405525,12 +405525,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405538,12 +405538,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405551,12 +405551,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405564,12 +405564,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405577,12 +405577,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405590,12 +405590,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405603,12 +405603,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405616,12 +405616,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405629,12 +405629,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405642,12 +405642,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405655,12 +405655,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405668,12 +405668,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405681,12 +405681,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405694,12 +405694,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405707,12 +405707,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405720,12 +405720,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405733,12 +405733,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405746,12 +405746,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405759,12 +405759,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405772,12 +405772,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405785,12 +405785,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405798,12 +405798,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405811,12 +405811,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405824,12 +405824,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405837,12 +405837,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405850,12 +405850,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405863,12 +405863,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405876,12 +405876,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405889,12 +405889,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405902,12 +405902,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405915,12 +405915,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405928,12 +405928,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405941,12 +405941,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405954,12 +405954,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405967,12 +405967,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405980,12 +405980,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -405993,12 +405993,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406006,12 +406006,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406019,12 +406019,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406032,12 +406032,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406045,12 +406045,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406058,12 +406058,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406071,12 +406071,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406084,12 +406084,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406097,12 +406097,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406110,12 +406110,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406123,12 +406123,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406136,12 +406136,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406149,12 +406149,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406162,12 +406162,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406175,12 +406175,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406188,12 +406188,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406201,12 +406201,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406214,12 +406214,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406227,12 +406227,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406240,12 +406240,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406253,12 +406253,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406266,12 +406266,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406279,12 +406279,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406292,12 +406292,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406305,12 +406305,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406318,12 +406318,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406331,12 +406331,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406344,12 +406344,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406357,12 +406357,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406370,12 +406370,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406383,12 +406383,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406396,12 +406396,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406409,12 +406409,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406422,12 +406422,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406435,12 +406435,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406448,12 +406448,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406461,12 +406461,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406474,12 +406474,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406487,12 +406487,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406500,12 +406500,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406513,12 +406513,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406526,12 +406526,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406539,12 +406539,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406552,12 +406552,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406565,12 +406565,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406578,12 +406578,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406591,12 +406591,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406604,12 +406604,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406617,12 +406617,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406630,12 +406630,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406643,12 +406643,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406656,12 +406656,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406669,12 +406669,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406682,12 +406682,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406695,12 +406695,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406708,12 +406708,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406721,12 +406721,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406734,12 +406734,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406747,12 +406747,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406760,12 +406760,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406773,12 +406773,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406786,12 +406786,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406799,12 +406799,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406812,12 +406812,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406825,12 +406825,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406838,12 +406838,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406851,12 +406851,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406864,12 +406864,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406877,12 +406877,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406890,12 +406890,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406903,12 +406903,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406916,12 +406916,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406929,12 +406929,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406942,12 +406942,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406955,12 +406955,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406968,12 +406968,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406981,12 +406981,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -406994,12 +406994,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407007,12 +407007,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407020,12 +407020,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407033,12 +407033,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407047,12 +407047,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407061,12 +407061,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407075,12 +407075,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407089,12 +407089,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407110,12 +407110,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407123,12 +407123,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407136,12 +407136,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407149,12 +407149,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407162,12 +407162,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407175,12 +407175,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407188,12 +407188,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407201,12 +407201,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407214,12 +407214,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407227,12 +407227,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407240,12 +407240,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407253,12 +407253,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407266,12 +407266,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407279,12 +407279,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407292,12 +407292,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407305,12 +407305,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407318,12 +407318,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407331,12 +407331,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407344,12 +407344,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407357,12 +407357,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407370,12 +407370,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407383,12 +407383,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407396,12 +407396,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407409,12 +407409,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407422,12 +407422,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407435,12 +407435,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407448,12 +407448,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407461,12 +407461,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407474,12 +407474,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407487,12 +407487,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407500,12 +407500,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407513,12 +407513,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407527,7 +407527,7 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
@@ -407543,12 +407543,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407556,12 +407556,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407569,12 +407569,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407582,12 +407582,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407595,12 +407595,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407608,12 +407608,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407621,12 +407621,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407634,12 +407634,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407647,12 +407647,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407660,12 +407660,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407673,12 +407673,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407686,12 +407686,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407699,12 +407699,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407712,12 +407712,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407725,12 +407725,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407738,12 +407738,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407751,12 +407751,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407764,12 +407764,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407777,12 +407777,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407790,12 +407790,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407803,12 +407803,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407816,12 +407816,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407829,12 +407829,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407842,12 +407842,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407855,12 +407855,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407868,12 +407868,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407881,12 +407881,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407894,12 +407894,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407907,12 +407907,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407920,12 +407920,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407933,12 +407933,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407946,12 +407946,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407960,14 +407960,14 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
 No TFI available (suggested TRX: 0).
 [DL] algo B <multi> (suggested TRX: 0): failed to allocate a TFI
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407976,12 +407976,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -407990,12 +407990,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408004,12 +408004,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408018,12 +408018,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408032,12 +408032,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408046,12 +408046,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408060,12 +408060,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408074,12 +408074,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408088,12 +408088,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408102,12 +408102,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408116,12 +408116,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408130,12 +408130,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408144,12 +408144,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408158,12 +408158,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408172,12 +408172,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408186,12 +408186,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408200,12 +408200,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408214,12 +408214,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408228,12 +408228,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408242,12 +408242,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408256,12 +408256,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408270,12 +408270,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408284,12 +408284,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408298,12 +408298,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408312,12 +408312,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408326,12 +408326,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408340,12 +408340,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408354,12 +408354,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408368,12 +408368,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408382,12 +408382,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408396,12 +408396,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408410,12 +408410,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408424,12 +408424,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408438,12 +408438,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408452,12 +408452,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408466,12 +408466,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408480,12 +408480,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408494,12 +408494,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408508,12 +408508,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408522,12 +408522,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408536,12 +408536,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408550,12 +408550,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408564,12 +408564,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408578,12 +408578,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408592,12 +408592,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408606,12 +408606,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408620,12 +408620,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408634,12 +408634,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408648,12 +408648,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408662,12 +408662,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408676,12 +408676,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408690,12 +408690,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408704,12 +408704,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408718,12 +408718,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408732,12 +408732,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408746,12 +408746,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408760,12 +408760,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408774,12 +408774,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408788,12 +408788,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408802,12 +408802,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408816,12 +408816,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408830,12 +408830,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408844,12 +408844,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408858,12 +408858,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408872,12 +408872,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408886,12 +408886,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408900,12 +408900,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408914,12 +408914,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408935,12 +408935,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408948,12 +408948,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408961,12 +408961,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408974,12 +408974,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -408987,12 +408987,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409000,12 +409000,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409013,12 +409013,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409026,12 +409026,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409039,12 +409039,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409052,12 +409052,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409065,12 +409065,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409078,12 +409078,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409091,12 +409091,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409104,12 +409104,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409117,12 +409117,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409130,12 +409130,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409143,12 +409143,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409156,12 +409156,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409169,12 +409169,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409182,12 +409182,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409195,12 +409195,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409208,12 +409208,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409221,12 +409221,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409234,12 +409234,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409247,12 +409247,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409260,12 +409260,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409273,12 +409273,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409286,12 +409286,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409299,12 +409299,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409312,12 +409312,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409325,12 +409325,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409338,12 +409338,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409351,12 +409351,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409364,12 +409364,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409377,12 +409377,12 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409390,7 +409390,7 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
@@ -409405,12 +409405,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409418,12 +409418,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409431,12 +409431,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409444,12 +409444,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409457,12 +409457,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409470,12 +409470,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409483,12 +409483,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409496,12 +409496,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409509,12 +409509,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409522,12 +409522,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409535,12 +409535,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409548,12 +409548,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409561,12 +409561,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409574,12 +409574,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409587,12 +409587,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409600,7 +409600,7 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
@@ -409615,12 +409615,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409628,12 +409628,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409641,12 +409641,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409654,12 +409654,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409667,12 +409667,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409680,12 +409680,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409693,12 +409693,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409706,12 +409706,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409719,12 +409719,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409732,12 +409732,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409745,12 +409745,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409758,12 +409758,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409771,12 +409771,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409784,12 +409784,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409797,12 +409797,12 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -409810,7 +409810,7 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 MS(TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
@@ -409826,177 +409826,177 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
@@ -410008,77 +410008,77 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
@@ -410090,113 +410090,113 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
 No USF available
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
 No USF available
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
 No USF available
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
 No USF available
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
 No USF available
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
 No USF available
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
@@ -410209,806 +410209,806 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
@@ -411021,162 +411021,162 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
@@ -411190,162 +411190,162 @@
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
@@ -411353,415 +411353,415 @@
 DL_ASS_TBF{NONE}: Allocated
 No TFI available (suggested TRX: -1).
 [DL] algo B <multi> (suggested TRX: -1): failed to allocate a TFI
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-10-0) Allocating DL TBF
@@ -411774,12 +411774,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -411787,12 +411787,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -411800,12 +411800,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -411813,12 +411813,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -411826,12 +411826,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -411839,12 +411839,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -411852,12 +411852,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -411865,12 +411865,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -411878,12 +411878,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -411891,12 +411891,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -411904,12 +411904,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -411917,12 +411917,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -411930,12 +411930,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -411943,12 +411943,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -411956,12 +411956,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -411969,12 +411969,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -411982,12 +411982,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -411995,12 +411995,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412008,12 +412008,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412021,12 +412021,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412034,12 +412034,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412047,12 +412047,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412060,12 +412060,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412073,12 +412073,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412086,12 +412086,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412099,12 +412099,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412112,12 +412112,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412125,12 +412125,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412138,12 +412138,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412151,12 +412151,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412164,12 +412164,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412177,12 +412177,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412190,12 +412190,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412203,12 +412203,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412216,12 +412216,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412229,12 +412229,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412242,12 +412242,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412255,12 +412255,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412268,12 +412268,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412281,12 +412281,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412294,12 +412294,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412307,12 +412307,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412320,12 +412320,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412333,12 +412333,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412346,12 +412346,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412359,12 +412359,12 @@
 MS(TA-220:MSCLS-46-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-46-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412372,12 +412372,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412385,12 +412385,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412398,12 +412398,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412411,12 +412411,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412424,12 +412424,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412437,12 +412437,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412450,12 +412450,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412463,12 +412463,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412476,12 +412476,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412489,12 +412489,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412502,12 +412502,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412515,12 +412515,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412528,12 +412528,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412541,12 +412541,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412554,12 +412554,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412567,12 +412567,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412580,12 +412580,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412593,12 +412593,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412606,12 +412606,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412619,12 +412619,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412632,12 +412632,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412645,12 +412645,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412658,12 +412658,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412671,12 +412671,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412684,12 +412684,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412697,12 +412697,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412710,12 +412710,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412723,12 +412723,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412736,12 +412736,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412749,12 +412749,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412762,12 +412762,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412775,12 +412775,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412788,12 +412788,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412801,12 +412801,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412814,12 +412814,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412827,12 +412827,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412840,12 +412840,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412853,12 +412853,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412866,12 +412866,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412879,12 +412879,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412892,12 +412892,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412905,12 +412905,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412918,12 +412918,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412931,12 +412931,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412944,12 +412944,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412957,12 +412957,12 @@
 MS(TA-220:MSCLS-46-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-46-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412970,12 +412970,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412983,12 +412983,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -412996,12 +412996,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413009,12 +413009,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413022,12 +413022,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413035,12 +413035,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413048,12 +413048,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413061,12 +413061,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413074,12 +413074,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413087,12 +413087,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413100,12 +413100,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413113,12 +413113,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413126,12 +413126,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413139,12 +413139,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413152,12 +413152,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413165,12 +413165,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413178,12 +413178,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413191,12 +413191,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413204,12 +413204,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413217,12 +413217,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413230,12 +413230,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413243,12 +413243,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413256,12 +413256,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413269,12 +413269,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413282,12 +413282,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413295,12 +413295,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413308,12 +413308,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413321,12 +413321,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413334,12 +413334,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413347,12 +413347,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413360,12 +413360,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413373,12 +413373,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413386,12 +413386,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413399,12 +413399,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413412,12 +413412,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413425,12 +413425,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413438,12 +413438,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413451,12 +413451,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413464,12 +413464,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413477,12 +413477,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413490,12 +413490,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413503,12 +413503,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413516,12 +413516,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413529,12 +413529,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413542,12 +413542,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413555,12 +413555,12 @@
 MS(TA-220:MSCLS-46-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-46-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413568,12 +413568,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413581,12 +413581,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413594,12 +413594,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413607,12 +413607,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413620,12 +413620,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413633,12 +413633,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413646,12 +413646,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413659,12 +413659,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413672,12 +413672,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413685,12 +413685,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413698,12 +413698,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413711,12 +413711,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413724,12 +413724,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413737,12 +413737,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413750,12 +413750,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413763,12 +413763,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413776,12 +413776,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413789,12 +413789,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413803,12 +413803,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413817,12 +413817,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413831,12 +413831,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413845,12 +413845,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -413867,177 +413867,177 @@
 MS(TLLI-0xc0000000:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TLLI-0xc0000001:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000001) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000001) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000001) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TLLI-0xc0000002:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000002) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000002) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000002) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TLLI-0xc0000003:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000003) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000003) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000003) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TLLI-0xc0000004:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000004) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000004) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000004) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TLLI-0xc0000005:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000005) Setting Control TS 3
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000005) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000005) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TLLI-0xc0000006:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000006) Setting Control TS 4
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000006) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000006) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TLLI-0xc0000007:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000007) Setting Control TS 5
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000007) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000007) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TLLI-0xc0000008:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000008) Setting Control TS 6
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000008) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000008) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TLLI-0xc0000009:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000009) Setting Control TS 7
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000009) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000009) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TLLI-0xc000000a:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000a) Setting Control TS 3
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000a) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000a) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TLLI-0xc000000b:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000b) Setting Control TS 4
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000b) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000b) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TLLI-0xc000000c:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000c) Setting Control TS 5
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000c) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000c) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TLLI-0xc000000d:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000d) Setting Control TS 6
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000d) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000d) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TLLI-0xc000000e:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000e) Setting Control TS 7
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000e) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000e) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TLLI-0xc000000f:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc000000f) Setting Control TS 3
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc000000f) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc000000f) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TLLI-0xc0000010:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000010) Setting Control TS 4
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000010) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000010) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TLLI-0xc0000011:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000011) Setting Control TS 5
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000011) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000011) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TLLI-0xc0000012:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000012) Setting Control TS 6
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000012) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000012) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TLLI-0xc0000013:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000013) Setting Control TS 7
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000013) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000013) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TLLI-0xc0000014:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000014) Setting Control TS 3
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000014) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000014) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TLLI-0xc0000015:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000015) Setting Control TS 4
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000015) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000015) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TLLI-0xc0000016:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000016) Setting Control TS 5
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000016) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000016) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TLLI-0xc0000017:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000017) Setting Control TS 6
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000017) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000017) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TLLI-0xc0000018:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000018) Setting Control TS 7
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000018) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000018) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TLLI-0xc0000019:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc0000019) Setting Control TS 3
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc0000019) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc0000019) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TLLI-0xc000001a:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001a) Setting Control TS 4
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001a) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001a) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TLLI-0xc000001b:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001b) Setting Control TS 5
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001b) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001b) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TLLI-0xc000001c:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001c) Setting Control TS 6
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001c) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001c) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TLLI-0xc000001d:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001d) Setting Control TS 7
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001d) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001d) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TLLI-0xc000001e:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc000001e) Setting Control TS 3
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc000001e) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc000001e) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TLLI-0xc000001f:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc000001f) Setting Control TS 4
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc000001f) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc000001f) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TLLI-0xc0000020:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000020) Setting Control TS 5
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000020) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000020) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TLLI-0xc0000021:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000021) Setting Control TS 6
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000021) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000021) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TLLI-0xc0000022:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000022) Setting Control TS 7
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000022) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000022) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TLLI-0xc0000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
@@ -414053,7 +414053,7 @@
 MS(TLLI-0xc0000000:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414061,7 +414061,7 @@
 MS(TLLI-0xc0000000:TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000){NONE}: Deallocated
@@ -414073,7 +414073,7 @@
 MS(TLLI-0xc0000001:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000001) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000001) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000001) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000001) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414081,7 +414081,7 @@
 MS(TLLI-0xc0000001:TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000001) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000001) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000001) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000001) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000001){NONE}: Deallocated
@@ -414093,7 +414093,7 @@
 MS(TLLI-0xc0000002:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000002) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000002) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000002) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000002) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414101,7 +414101,7 @@
 MS(TLLI-0xc0000002:TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000002) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000002) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000002) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000002) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000002){NONE}: Deallocated
@@ -414113,7 +414113,7 @@
 MS(TLLI-0xc0000003:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000003) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000003) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000003) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000003) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414121,7 +414121,7 @@
 MS(TLLI-0xc0000003:TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000003) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000003) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000003) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000003) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000003){NONE}: Deallocated
@@ -414133,7 +414133,7 @@
 MS(TLLI-0xc0000004:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000004) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000004) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000004) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000004) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414141,7 +414141,7 @@
 MS(TLLI-0xc0000004:TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000004) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000004) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000004) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000004) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000004){NONE}: Deallocated
@@ -414153,7 +414153,7 @@
 MS(TLLI-0xc0000005:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000005) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000005) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000005) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000005) free
 UL_ASS_TBF(DL:TFI-0-0-1:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414161,7 +414161,7 @@
 MS(TLLI-0xc0000005:TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000005) Setting Control TS 3
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000005) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000005) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000005) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000005){NONE}: Deallocated
@@ -414173,7 +414173,7 @@
 MS(TLLI-0xc0000006:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000006) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000006) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000006) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000006) free
 UL_ASS_TBF(DL:TFI-0-0-1:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414181,7 +414181,7 @@
 MS(TLLI-0xc0000006:TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000006) Setting Control TS 4
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000006) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000006) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000006) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000006){NONE}: Deallocated
@@ -414193,7 +414193,7 @@
 MS(TLLI-0xc0000007:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000007) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000007) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000007) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000007) free
 UL_ASS_TBF(DL:TFI-0-0-1:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414201,7 +414201,7 @@
 MS(TLLI-0xc0000007:TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000007) Setting Control TS 5
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000007) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000007) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000007) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000007){NONE}: Deallocated
@@ -414213,7 +414213,7 @@
 MS(TLLI-0xc0000008:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000008) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000008) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000008) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000008) free
 UL_ASS_TBF(DL:TFI-0-0-1:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414221,7 +414221,7 @@
 MS(TLLI-0xc0000008:TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000008) Setting Control TS 6
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000008) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000008) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000008) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000008){NONE}: Deallocated
@@ -414233,7 +414233,7 @@
 MS(TLLI-0xc0000009:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000009) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000009) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000009) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000009) free
 UL_ASS_TBF(DL:TFI-0-0-1:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414241,7 +414241,7 @@
 MS(TLLI-0xc0000009:TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000009) Setting Control TS 7
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000009) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000009) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000009) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000009){NONE}: Deallocated
@@ -414253,7 +414253,7 @@
 MS(TLLI-0xc000000a:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000a) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000a) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000a) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000a) free
 UL_ASS_TBF(DL:TFI-0-0-2:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414261,7 +414261,7 @@
 MS(TLLI-0xc000000a:TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000a) Setting Control TS 3
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000a) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000a) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000a) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000a){NONE}: Deallocated
@@ -414273,7 +414273,7 @@
 MS(TLLI-0xc000000b:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000b) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000b) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000b) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000b) free
 UL_ASS_TBF(DL:TFI-0-0-2:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414281,7 +414281,7 @@
 MS(TLLI-0xc000000b:TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000b) Setting Control TS 4
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000b) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000b) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000b) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000b){NONE}: Deallocated
@@ -414293,7 +414293,7 @@
 MS(TLLI-0xc000000c:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000c) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000c) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000c) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000c) free
 UL_ASS_TBF(DL:TFI-0-0-2:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414301,7 +414301,7 @@
 MS(TLLI-0xc000000c:TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000c) Setting Control TS 5
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000c) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000c) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000c) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000c){NONE}: Deallocated
@@ -414313,7 +414313,7 @@
 MS(TLLI-0xc000000d:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000d) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000d) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000d) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000d) free
 UL_ASS_TBF(DL:TFI-0-0-2:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414321,7 +414321,7 @@
 MS(TLLI-0xc000000d:TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000d) Setting Control TS 6
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000d) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000d) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000d) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000d){NONE}: Deallocated
@@ -414333,7 +414333,7 @@
 MS(TLLI-0xc000000e:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000e) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000e) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000e) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000e) free
 UL_ASS_TBF(DL:TFI-0-0-2:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414341,7 +414341,7 @@
 MS(TLLI-0xc000000e:TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000e) Setting Control TS 7
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000e) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000e) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000e) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000e){NONE}: Deallocated
@@ -414353,7 +414353,7 @@
 MS(TLLI-0xc000000f:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000f) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000f) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000f) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc000000f) free
 UL_ASS_TBF(DL:TFI-0-0-3:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414361,7 +414361,7 @@
 MS(TLLI-0xc000000f:TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc000000f) Setting Control TS 3
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc000000f) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc000000f) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000f) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000f){NONE}: Deallocated
@@ -414373,7 +414373,7 @@
 MS(TLLI-0xc0000010:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000010) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000010) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000010) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000010) free
 UL_ASS_TBF(DL:TFI-0-0-3:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414381,7 +414381,7 @@
 MS(TLLI-0xc0000010:TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000010) Setting Control TS 4
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000010) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000010) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000010) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000010){NONE}: Deallocated
@@ -414393,7 +414393,7 @@
 MS(TLLI-0xc0000011:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000011) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000011) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000011) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000011) free
 UL_ASS_TBF(DL:TFI-0-0-3:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414401,7 +414401,7 @@
 MS(TLLI-0xc0000011:TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000011) Setting Control TS 5
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000011) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000011) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000011) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000011){NONE}: Deallocated
@@ -414413,7 +414413,7 @@
 MS(TLLI-0xc0000012:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000012) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000012) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000012) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000012) free
 UL_ASS_TBF(DL:TFI-0-0-3:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414421,7 +414421,7 @@
 MS(TLLI-0xc0000012:TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000012) Setting Control TS 6
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000012) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000012) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000012) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000012){NONE}: Deallocated
@@ -414433,7 +414433,7 @@
 MS(TLLI-0xc0000013:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000013) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000013) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000013) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000013) free
 UL_ASS_TBF(DL:TFI-0-0-3:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414441,7 +414441,7 @@
 MS(TLLI-0xc0000013:TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000013) Setting Control TS 7
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000013) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000013) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000013) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000013){NONE}: Deallocated
@@ -414453,7 +414453,7 @@
 MS(TLLI-0xc0000014:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000014) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000014) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000014) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000014) free
 UL_ASS_TBF(DL:TFI-0-0-4:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414461,7 +414461,7 @@
 MS(TLLI-0xc0000014:TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000014) Setting Control TS 3
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000014) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000014) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000014) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000014){NONE}: Deallocated
@@ -414473,7 +414473,7 @@
 MS(TLLI-0xc0000015:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000015) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000015) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000015) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000015) free
 UL_ASS_TBF(DL:TFI-0-0-4:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414481,7 +414481,7 @@
 MS(TLLI-0xc0000015:TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000015) Setting Control TS 4
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000015) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000015) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000015) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000015){NONE}: Deallocated
@@ -414493,7 +414493,7 @@
 MS(TLLI-0xc0000016:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000016) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000016) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000016) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000016) free
 UL_ASS_TBF(DL:TFI-0-0-4:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414501,7 +414501,7 @@
 MS(TLLI-0xc0000016:TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000016) Setting Control TS 5
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000016) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000016) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000016) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000016){NONE}: Deallocated
@@ -414513,7 +414513,7 @@
 MS(TLLI-0xc0000017:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000017) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000017) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000017) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000017) free
 UL_ASS_TBF(DL:TFI-0-0-4:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414521,7 +414521,7 @@
 MS(TLLI-0xc0000017:TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000017) Setting Control TS 6
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000017) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000017) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000017) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000017){NONE}: Deallocated
@@ -414533,7 +414533,7 @@
 MS(TLLI-0xc0000018:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000018) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000018) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000018) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000018) free
 UL_ASS_TBF(DL:TFI-0-0-4:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414541,7 +414541,7 @@
 MS(TLLI-0xc0000018:TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000018) Setting Control TS 7
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000018) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000018) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000018) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000018){NONE}: Deallocated
@@ -414553,7 +414553,7 @@
 MS(TLLI-0xc0000019:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000019) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000019) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000019) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc0000019) free
 UL_ASS_TBF(DL:TFI-0-0-5:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414561,7 +414561,7 @@
 MS(TLLI-0xc0000019:TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc0000019) Setting Control TS 3
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc0000019) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc0000019) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000019) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000019){NONE}: Deallocated
@@ -414573,7 +414573,7 @@
 MS(TLLI-0xc000001a:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001a) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001a) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001a) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001a) free
 UL_ASS_TBF(DL:TFI-0-0-5:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414581,7 +414581,7 @@
 MS(TLLI-0xc000001a:TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001a) Setting Control TS 4
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001a) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001a) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001a) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001a){NONE}: Deallocated
@@ -414593,7 +414593,7 @@
 MS(TLLI-0xc000001b:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001b) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001b) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001b) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001b) free
 UL_ASS_TBF(DL:TFI-0-0-5:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414601,7 +414601,7 @@
 MS(TLLI-0xc000001b:TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001b) Setting Control TS 5
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001b) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001b) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001b) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001b){NONE}: Deallocated
@@ -414613,7 +414613,7 @@
 MS(TLLI-0xc000001c:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001c) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001c) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001c) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001c) free
 UL_ASS_TBF(DL:TFI-0-0-5:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414621,7 +414621,7 @@
 MS(TLLI-0xc000001c:TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001c) Setting Control TS 6
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001c) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001c) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001c) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001c){NONE}: Deallocated
@@ -414633,7 +414633,7 @@
 MS(TLLI-0xc000001d:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001d) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001d) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001d) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001d) free
 UL_ASS_TBF(DL:TFI-0-0-5:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414641,7 +414641,7 @@
 MS(TLLI-0xc000001d:TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001d) Setting Control TS 7
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001d) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001d) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001d) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001d){NONE}: Deallocated
@@ -414653,7 +414653,7 @@
 MS(TLLI-0xc000001e:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001e) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001e) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001e) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc000001e) free
 UL_ASS_TBF(DL:TFI-0-0-6:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414661,7 +414661,7 @@
 MS(TLLI-0xc000001e:TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc000001e) Setting Control TS 3
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc000001e) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc000001e) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001e) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001e){NONE}: Deallocated
@@ -414673,7 +414673,7 @@
 MS(TLLI-0xc000001f:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001f) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001f) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001f) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc000001f) free
 UL_ASS_TBF(DL:TFI-0-0-6:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414681,7 +414681,7 @@
 MS(TLLI-0xc000001f:TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc000001f) Setting Control TS 4
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc000001f) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc000001f) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001f) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001f){NONE}: Deallocated
@@ -414693,7 +414693,7 @@
 MS(TLLI-0xc0000020:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000020) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000020) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000020) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000020) free
 UL_ASS_TBF(DL:TFI-0-0-6:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414701,7 +414701,7 @@
 MS(TLLI-0xc0000020:TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000020) Setting Control TS 5
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000020) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000020) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000020) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000020){NONE}: Deallocated
@@ -414713,7 +414713,7 @@
 MS(TLLI-0xc0000021:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000021) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000021) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000021) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000021) free
 UL_ASS_TBF(DL:TFI-0-0-6:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414721,7 +414721,7 @@
 MS(TLLI-0xc0000021:TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000021) Setting Control TS 6
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000021) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000021) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000021) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000021){NONE}: Deallocated
@@ -414733,7 +414733,7 @@
 MS(TLLI-0xc0000022:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000022) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000022) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000022) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000022) free
 UL_ASS_TBF(DL:TFI-0-0-6:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414741,7 +414741,7 @@
 MS(TLLI-0xc0000022:TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000022) Setting Control TS 7
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000022) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000022) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000022) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000022){NONE}: Deallocated
@@ -414750,7 +414750,7 @@
 MS(TLLI-0xc0000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000023) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000023) free
 UL_ASS_TBF(DL:TFI-0-0-7:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414758,7 +414758,7 @@
 MS(TLLI-0xc0000023:TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000023) Setting Control TS 3
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000023) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000023){NONE}: Deallocated
@@ -414767,7 +414767,7 @@
 MS(TLLI-0xc0000024:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000024) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000024) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000024) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000024) free
 UL_ASS_TBF(DL:TFI-0-0-7:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414775,7 +414775,7 @@
 MS(TLLI-0xc0000024:TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000024) Setting Control TS 4
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000024) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000024) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000024) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000024){NONE}: Deallocated
@@ -414784,7 +414784,7 @@
 MS(TLLI-0xc0000025:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000025) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000025) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000025) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000025) free
 UL_ASS_TBF(DL:TFI-0-0-7:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414792,7 +414792,7 @@
 MS(TLLI-0xc0000025:TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000025) Setting Control TS 5
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000025) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000025) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000025) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000025){NONE}: Deallocated
@@ -414801,7 +414801,7 @@
 MS(TLLI-0xc0000026:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000026) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000026) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000026) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000026) free
 UL_ASS_TBF(DL:TFI-0-0-7:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414809,7 +414809,7 @@
 MS(TLLI-0xc0000026:TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000026) Setting Control TS 6
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000026) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000026) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000026) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000026){NONE}: Deallocated
@@ -414818,7 +414818,7 @@
 MS(TLLI-0xc0000027:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000027) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000027) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000027) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000027) free
 UL_ASS_TBF(DL:TFI-0-0-7:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414826,7 +414826,7 @@
 MS(TLLI-0xc0000027:TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000027) Setting Control TS 7
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000027) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000027) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000027) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000027){NONE}: Deallocated
@@ -414835,7 +414835,7 @@
 MS(TLLI-0xc0000028:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000028) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000028) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000028) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc0000028) free
 UL_ASS_TBF(DL:TFI-0-0-8:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414843,7 +414843,7 @@
 MS(TLLI-0xc0000028:TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc0000028) Setting Control TS 3
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc0000028) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc0000028) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000028) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000028){NONE}: Deallocated
@@ -414852,7 +414852,7 @@
 MS(TLLI-0xc0000029:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000029) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000029) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000029) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc0000029) free
 UL_ASS_TBF(DL:TFI-0-0-8:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414860,7 +414860,7 @@
 MS(TLLI-0xc0000029:TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc0000029) Setting Control TS 4
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc0000029) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc0000029) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000029) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000029){NONE}: Deallocated
@@ -414869,7 +414869,7 @@
 MS(TLLI-0xc000002a:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002a) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002a) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002a) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000002a) free
 UL_ASS_TBF(DL:TFI-0-0-8:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414877,7 +414877,7 @@
 MS(TLLI-0xc000002a:TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000002a) Setting Control TS 5
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000002a) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000002a) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002a) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002a){NONE}: Deallocated
@@ -414886,7 +414886,7 @@
 MS(TLLI-0xc000002b:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002b) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002b) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002b) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000002b) free
 UL_ASS_TBF(DL:TFI-0-0-8:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414894,7 +414894,7 @@
 MS(TLLI-0xc000002b:TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000002b) Setting Control TS 6
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000002b) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000002b) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002b) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002b){NONE}: Deallocated
@@ -414903,7 +414903,7 @@
 MS(TLLI-0xc000002c:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002c) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002c) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002c) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000002c) free
 UL_ASS_TBF(DL:TFI-0-0-8:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414911,7 +414911,7 @@
 MS(TLLI-0xc000002c:TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000002c) Setting Control TS 7
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000002c) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000002c) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002c) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002c){NONE}: Deallocated
@@ -414920,7 +414920,7 @@
 MS(TLLI-0xc000002d:TA-220:MSCLS-46-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002d) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002d) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002d) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000002d) free
 UL_ASS_TBF(DL:TFI-0-0-9:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414928,7 +414928,7 @@
 MS(TLLI-0xc000002d:TA-220:MSCLS-46-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000002d) Setting Control TS 3
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000002d) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000002d) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002d) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002d){NONE}: Deallocated
@@ -414937,7 +414937,7 @@
 MS(TLLI-0xc000002e:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002e) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002e) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002e) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000002e) free
 UL_ASS_TBF(DL:TFI-0-0-9:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414945,7 +414945,7 @@
 MS(TLLI-0xc000002e:TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000002e) Setting Control TS 4
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000002e) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000002e) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002e) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002e){NONE}: Deallocated
@@ -414954,7 +414954,7 @@
 MS(TLLI-0xc000002f:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002f) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002f) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002f) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000002f) free
 UL_ASS_TBF(DL:TFI-0-0-9:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414962,7 +414962,7 @@
 MS(TLLI-0xc000002f:TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000002f) Setting Control TS 5
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000002f) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000002f) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002f) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002f){NONE}: Deallocated
@@ -414971,7 +414971,7 @@
 MS(TLLI-0xc0000030:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000030) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000030) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000030) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000030) free
 UL_ASS_TBF(DL:TFI-0-0-9:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414979,7 +414979,7 @@
 MS(TLLI-0xc0000030:TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000030) Setting Control TS 6
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000030) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000030) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000030) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000030){NONE}: Deallocated
@@ -414988,7 +414988,7 @@
 MS(TLLI-0xc0000031:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000031) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000031) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000031) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000031) free
 UL_ASS_TBF(DL:TFI-0-0-9:STATE-NEW:GPRS){NONE}: Deallocated
@@ -414996,7 +414996,7 @@
 MS(TLLI-0xc0000031:TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000031) Setting Control TS 7
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000031) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000031) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000031) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000031){NONE}: Deallocated
@@ -415005,7 +415005,7 @@
 MS(TLLI-0xc0000032:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000032) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000032) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000032) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000032) free
 UL_ASS_TBF(DL:TFI-0-0-10:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415013,7 +415013,7 @@
 MS(TLLI-0xc0000032:TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000032) Setting Control TS 3
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000032) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000032) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000032) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000032){NONE}: Deallocated
@@ -415022,7 +415022,7 @@
 MS(TLLI-0xc0000033:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000033) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000033) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000033) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000033) free
 UL_ASS_TBF(DL:TFI-0-0-10:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415030,7 +415030,7 @@
 MS(TLLI-0xc0000033:TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000033) Setting Control TS 4
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000033) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000033) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000033) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000033){NONE}: Deallocated
@@ -415039,7 +415039,7 @@
 MS(TLLI-0xc0000034:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000034) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000034) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000034) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000034) free
 UL_ASS_TBF(DL:TFI-0-0-10:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415047,7 +415047,7 @@
 MS(TLLI-0xc0000034:TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000034) Setting Control TS 5
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000034) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000034) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000034) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000034){NONE}: Deallocated
@@ -415056,7 +415056,7 @@
 MS(TLLI-0xc0000035:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000035) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000035) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000035) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000035) free
 UL_ASS_TBF(DL:TFI-0-0-10:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415064,7 +415064,7 @@
 MS(TLLI-0xc0000035:TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000035) Setting Control TS 6
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000035) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000035) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000035) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000035){NONE}: Deallocated
@@ -415073,7 +415073,7 @@
 MS(TLLI-0xc0000036:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000036) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000036) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000036) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000036) free
 UL_ASS_TBF(DL:TFI-0-0-10:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415081,7 +415081,7 @@
 MS(TLLI-0xc0000036:TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000036) Setting Control TS 7
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000036) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000036) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000036) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000036){NONE}: Deallocated
@@ -415090,7 +415090,7 @@
 MS(TLLI-0xc0000037:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000037) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000037) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000037) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000037) free
 UL_ASS_TBF(DL:TFI-0-0-11:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415098,7 +415098,7 @@
 MS(TLLI-0xc0000037:TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000037) Setting Control TS 3
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000037) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000037) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000037) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000037){NONE}: Deallocated
@@ -415107,7 +415107,7 @@
 MS(TLLI-0xc0000038:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000038) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000038) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000038) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000038) free
 UL_ASS_TBF(DL:TFI-0-0-11:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415115,7 +415115,7 @@
 MS(TLLI-0xc0000038:TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000038) Setting Control TS 4
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000038) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000038) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000038) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000038){NONE}: Deallocated
@@ -415124,7 +415124,7 @@
 MS(TLLI-0xc0000039:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000039) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000039) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000039) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000039) free
 UL_ASS_TBF(DL:TFI-0-0-11:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415132,7 +415132,7 @@
 MS(TLLI-0xc0000039:TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000039) Setting Control TS 5
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000039) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000039) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000039) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000039){NONE}: Deallocated
@@ -415141,7 +415141,7 @@
 MS(TLLI-0xc000003a:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003a) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003a) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003a) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000003a) free
 UL_ASS_TBF(DL:TFI-0-0-11:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415149,7 +415149,7 @@
 MS(TLLI-0xc000003a:TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000003a) Setting Control TS 6
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000003a) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000003a) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003a) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003a){NONE}: Deallocated
@@ -415158,7 +415158,7 @@
 MS(TLLI-0xc000003b:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003b) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003b) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003b) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000003b) free
 UL_ASS_TBF(DL:TFI-0-0-11:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415166,7 +415166,7 @@
 MS(TLLI-0xc000003b:TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000003b) Setting Control TS 7
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000003b) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000003b) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003b) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003b){NONE}: Deallocated
@@ -415175,7 +415175,7 @@
 MS(TLLI-0xc000003c:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003c) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003c) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003c) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000003c) free
 UL_ASS_TBF(DL:TFI-0-0-12:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415183,7 +415183,7 @@
 MS(TLLI-0xc000003c:TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000003c) Setting Control TS 3
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000003c) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000003c) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003c) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003c){NONE}: Deallocated
@@ -415192,7 +415192,7 @@
 MS(TLLI-0xc000003d:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003d) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003d) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003d) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000003d) free
 UL_ASS_TBF(DL:TFI-0-0-12:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415200,7 +415200,7 @@
 MS(TLLI-0xc000003d:TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000003d) Setting Control TS 4
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000003d) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000003d) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003d) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003d){NONE}: Deallocated
@@ -415209,7 +415209,7 @@
 MS(TLLI-0xc000003e:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003e) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003e) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003e) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000003e) free
 UL_ASS_TBF(DL:TFI-0-0-12:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415217,7 +415217,7 @@
 MS(TLLI-0xc000003e:TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000003e) Setting Control TS 5
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000003e) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000003e) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003e) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003e){NONE}: Deallocated
@@ -415226,7 +415226,7 @@
 MS(TLLI-0xc000003f:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003f) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003f) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003f) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000003f) free
 UL_ASS_TBF(DL:TFI-0-0-12:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415234,7 +415234,7 @@
 MS(TLLI-0xc000003f:TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000003f) Setting Control TS 6
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000003f) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000003f) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003f) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003f){NONE}: Deallocated
@@ -415243,7 +415243,7 @@
 MS(TLLI-0xc0000040:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000040) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000040) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000040) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc0000040) free
 UL_ASS_TBF(DL:TFI-0-0-12:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415251,7 +415251,7 @@
 MS(TLLI-0xc0000040:TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc0000040) Setting Control TS 7
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc0000040) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc0000040) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000040) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000040){NONE}: Deallocated
@@ -415260,7 +415260,7 @@
 MS(TLLI-0xc0000041:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000041) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000041) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000041) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000041) free
 UL_ASS_TBF(DL:TFI-0-0-13:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415268,7 +415268,7 @@
 MS(TLLI-0xc0000041:TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000041) Setting Control TS 3
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000041) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000041) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000041) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000041){NONE}: Deallocated
@@ -415277,7 +415277,7 @@
 MS(TLLI-0xc0000042:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000042) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000042) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000042) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000042) free
 UL_ASS_TBF(DL:TFI-0-0-13:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415285,7 +415285,7 @@
 MS(TLLI-0xc0000042:TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000042) Setting Control TS 4
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000042) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000042) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000042) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000042){NONE}: Deallocated
@@ -415294,7 +415294,7 @@
 MS(TLLI-0xc0000043:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000043) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000043) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000043) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000043) free
 UL_ASS_TBF(DL:TFI-0-0-13:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415302,7 +415302,7 @@
 MS(TLLI-0xc0000043:TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000043) Setting Control TS 5
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000043) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000043) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000043) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000043){NONE}: Deallocated
@@ -415311,7 +415311,7 @@
 MS(TLLI-0xc0000044:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000044) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000044) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000044) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000044) free
 UL_ASS_TBF(DL:TFI-0-0-13:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415319,7 +415319,7 @@
 MS(TLLI-0xc0000044:TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000044) Setting Control TS 6
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000044) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000044) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000044) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000044){NONE}: Deallocated
@@ -415328,7 +415328,7 @@
 MS(TLLI-0xc0000045:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000045) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000045) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000045) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000045) free
 UL_ASS_TBF(DL:TFI-0-0-13:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415336,7 +415336,7 @@
 MS(TLLI-0xc0000045:TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000045) Setting Control TS 7
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000045) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000045) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000045) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000045){NONE}: Deallocated
@@ -415345,7 +415345,7 @@
 MS(TLLI-0xc0000046:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000046) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000046) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000046) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000046) free
 UL_ASS_TBF(DL:TFI-0-0-14:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415353,7 +415353,7 @@
 MS(TLLI-0xc0000046:TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000046) Setting Control TS 3
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000046) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000046) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000046) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000046){NONE}: Deallocated
@@ -415362,7 +415362,7 @@
 MS(TLLI-0xc0000047:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000047) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000047) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000047) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000047) free
 UL_ASS_TBF(DL:TFI-0-0-14:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415370,7 +415370,7 @@
 MS(TLLI-0xc0000047:TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000047) Setting Control TS 4
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000047) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000047) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000047) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000047){NONE}: Deallocated
@@ -415379,7 +415379,7 @@
 MS(TLLI-0xc0000048:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000048) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000048) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000048) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000048) free
 UL_ASS_TBF(DL:TFI-0-0-14:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415387,7 +415387,7 @@
 MS(TLLI-0xc0000048:TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000048) Setting Control TS 5
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000048) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000048) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000048) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000048){NONE}: Deallocated
@@ -415396,7 +415396,7 @@
 MS(TLLI-0xc0000049:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000049) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000049) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000049) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000049) free
 UL_ASS_TBF(DL:TFI-0-0-14:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415404,7 +415404,7 @@
 MS(TLLI-0xc0000049:TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000049) Setting Control TS 6
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000049) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000049) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000049) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000049){NONE}: Deallocated
@@ -415413,7 +415413,7 @@
 MS(TLLI-0xc000004a:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004a) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004a) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004a) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc000004a) free
 UL_ASS_TBF(DL:TFI-0-0-14:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415421,7 +415421,7 @@
 MS(TLLI-0xc000004a:TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc000004a) Setting Control TS 7
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc000004a) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc000004a) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004a) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004a){NONE}: Deallocated
@@ -415430,7 +415430,7 @@
 MS(TLLI-0xc000004b:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004b) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004b) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004b) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004b) free
 UL_ASS_TBF(DL:TFI-0-0-15:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415438,7 +415438,7 @@
 MS(TLLI-0xc000004b:TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004b) Setting Control TS 3
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004b) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004b) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004b) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004b){NONE}: Deallocated
@@ -415447,7 +415447,7 @@
 MS(TLLI-0xc000004c:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004c) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004c) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004c) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004c) free
 UL_ASS_TBF(DL:TFI-0-0-15:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415455,7 +415455,7 @@
 MS(TLLI-0xc000004c:TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004c) Setting Control TS 4
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004c) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004c) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004c) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004c){NONE}: Deallocated
@@ -415464,7 +415464,7 @@
 MS(TLLI-0xc000004d:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004d) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004d) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004d) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004d) free
 UL_ASS_TBF(DL:TFI-0-0-15:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415472,7 +415472,7 @@
 MS(TLLI-0xc000004d:TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004d) Setting Control TS 5
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004d) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004d) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004d) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004d){NONE}: Deallocated
@@ -415481,7 +415481,7 @@
 MS(TLLI-0xc000004e:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004e) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004e) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004e) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004e) free
 UL_ASS_TBF(DL:TFI-0-0-15:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415489,7 +415489,7 @@
 MS(TLLI-0xc000004e:TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004e) Setting Control TS 6
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004e) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004e) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004e) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004e){NONE}: Deallocated
@@ -415498,7 +415498,7 @@
 MS(TLLI-0xc000004f:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004f) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004f) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004f) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004f) free
 UL_ASS_TBF(DL:TFI-0-0-15:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415506,7 +415506,7 @@
 MS(TLLI-0xc000004f:TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004f) Setting Control TS 7
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004f) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004f) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004f) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004f){NONE}: Deallocated
@@ -415515,7 +415515,7 @@
 MS(TLLI-0xc0000050:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000050) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000050) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000050) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000050) free
 UL_ASS_TBF(DL:TFI-0-0-16:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415523,7 +415523,7 @@
 MS(TLLI-0xc0000050:TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000050) Setting Control TS 3
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000050) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000050) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000050) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000050){NONE}: Deallocated
@@ -415532,7 +415532,7 @@
 MS(TLLI-0xc0000051:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000051) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000051) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000051) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000051) free
 UL_ASS_TBF(DL:TFI-0-0-16:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415540,7 +415540,7 @@
 MS(TLLI-0xc0000051:TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000051) Setting Control TS 4
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000051) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000051) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000051) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000051){NONE}: Deallocated
@@ -415549,7 +415549,7 @@
 MS(TLLI-0xc0000052:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000052) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000052) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000052) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000052) free
 UL_ASS_TBF(DL:TFI-0-0-16:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415557,7 +415557,7 @@
 MS(TLLI-0xc0000052:TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000052) Setting Control TS 5
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000052) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000052) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000052) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000052){NONE}: Deallocated
@@ -415566,7 +415566,7 @@
 MS(TLLI-0xc0000053:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000053) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000053) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000053) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000053) free
 UL_ASS_TBF(DL:TFI-0-0-16:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415574,7 +415574,7 @@
 MS(TLLI-0xc0000053:TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000053) Setting Control TS 6
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000053) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000053) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000053) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000053){NONE}: Deallocated
@@ -415583,7 +415583,7 @@
 MS(TLLI-0xc0000054:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000054) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000054) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000054) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000054) free
 UL_ASS_TBF(DL:TFI-0-0-16:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415591,7 +415591,7 @@
 MS(TLLI-0xc0000054:TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000054) Setting Control TS 7
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000054) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000054) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000054) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000054){NONE}: Deallocated
@@ -415600,7 +415600,7 @@
 MS(TLLI-0xc0000055:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000055) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000055) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000055) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000055) free
 UL_ASS_TBF(DL:TFI-0-0-17:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415608,7 +415608,7 @@
 MS(TLLI-0xc0000055:TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000055) Setting Control TS 3
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000055) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000055) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000055) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000055){NONE}: Deallocated
@@ -415617,7 +415617,7 @@
 MS(TLLI-0xc0000056:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000056) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000056) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000056) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000056) free
 UL_ASS_TBF(DL:TFI-0-0-17:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415625,7 +415625,7 @@
 MS(TLLI-0xc0000056:TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000056) Setting Control TS 4
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000056) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000056) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000056) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000056){NONE}: Deallocated
@@ -415634,7 +415634,7 @@
 MS(TLLI-0xc0000057:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000057) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000057) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000057) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000057) free
 UL_ASS_TBF(DL:TFI-0-0-17:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415642,7 +415642,7 @@
 MS(TLLI-0xc0000057:TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000057) Setting Control TS 5
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000057) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000057) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000057) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000057){NONE}: Deallocated
@@ -415651,7 +415651,7 @@
 MS(TLLI-0xc0000058:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000058) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000058) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000058) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000058) free
 UL_ASS_TBF(DL:TFI-0-0-17:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415659,7 +415659,7 @@
 MS(TLLI-0xc0000058:TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000058) Setting Control TS 6
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000058) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000058) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000058) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000058){NONE}: Deallocated
@@ -415668,7 +415668,7 @@
 MS(TLLI-0xc0000059:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000059) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000059) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000059) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000059) free
 UL_ASS_TBF(DL:TFI-0-0-17:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415676,7 +415676,7 @@
 MS(TLLI-0xc0000059:TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000059) Setting Control TS 7
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000059) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000059) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000059) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000059){NONE}: Deallocated
@@ -415685,7 +415685,7 @@
 MS(TLLI-0xc000005a:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000005a) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000005a) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000005a) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005a) free
 UL_ASS_TBF(DL:TFI-0-0-18:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415693,7 +415693,7 @@
 MS(TLLI-0xc000005a:TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005a) Setting Control TS 3
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005a) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005a) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000005a) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000005a){NONE}: Deallocated
@@ -415702,7 +415702,7 @@
 MS(TLLI-0xc000005b:TA-220:MSCLS-46-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000005b) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000005b) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000005b) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005b) free
 UL_ASS_TBF(DL:TFI-0-0-18:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415710,7 +415710,7 @@
 MS(TLLI-0xc000005b:TA-220:MSCLS-46-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005b) Setting Control TS 4
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005b) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005b) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000005b) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000005b){NONE}: Deallocated
@@ -415719,7 +415719,7 @@
 MS(TLLI-0xc000005c:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000005c) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000005c) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000005c) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005c) free
 UL_ASS_TBF(DL:TFI-0-0-18:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415727,7 +415727,7 @@
 MS(TLLI-0xc000005c:TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005c) Setting Control TS 5
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005c) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005c) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000005c) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000005c){NONE}: Deallocated
@@ -415736,7 +415736,7 @@
 MS(TLLI-0xc000005d:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000005d) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000005d) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000005d) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005d) free
 UL_ASS_TBF(DL:TFI-0-0-18:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415744,7 +415744,7 @@
 MS(TLLI-0xc000005d:TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005d) Setting Control TS 6
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005d) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005d) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000005d) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000005d){NONE}: Deallocated
@@ -415753,7 +415753,7 @@
 MS(TLLI-0xc000005e:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000005e) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000005e) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000005e) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005e) free
 UL_ASS_TBF(DL:TFI-0-0-18:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415761,7 +415761,7 @@
 MS(TLLI-0xc000005e:TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005e) Setting Control TS 7
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005e) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005e) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000005e) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000005e){NONE}: Deallocated
@@ -415770,7 +415770,7 @@
 MS(TLLI-0xc000005f:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000005f) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000005f) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000005f) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc000005f) free
 UL_ASS_TBF(DL:TFI-0-0-19:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415778,7 +415778,7 @@
 MS(TLLI-0xc000005f:TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc000005f) Setting Control TS 3
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc000005f) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc000005f) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000005f) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000005f){NONE}: Deallocated
@@ -415787,7 +415787,7 @@
 MS(TLLI-0xc0000060:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000060) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000060) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000060) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000060) free
 UL_ASS_TBF(DL:TFI-0-0-19:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415795,7 +415795,7 @@
 MS(TLLI-0xc0000060:TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000060) Setting Control TS 4
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000060) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000060) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000060) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000060){NONE}: Deallocated
@@ -415804,7 +415804,7 @@
 MS(TLLI-0xc0000061:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000061) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000061) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000061) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000061) free
 UL_ASS_TBF(DL:TFI-0-0-19:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415812,7 +415812,7 @@
 MS(TLLI-0xc0000061:TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000061) Setting Control TS 5
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000061) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000061) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000061) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000061){NONE}: Deallocated
@@ -415821,7 +415821,7 @@
 MS(TLLI-0xc0000062:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000062) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000062) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000062) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000062) free
 UL_ASS_TBF(DL:TFI-0-0-19:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415829,7 +415829,7 @@
 MS(TLLI-0xc0000062:TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000062) Setting Control TS 6
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000062) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000062) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000062) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000062){NONE}: Deallocated
@@ -415838,7 +415838,7 @@
 MS(TLLI-0xc0000063:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000063) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000063) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000063) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000063) free
 UL_ASS_TBF(DL:TFI-0-0-19:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415846,7 +415846,7 @@
 MS(TLLI-0xc0000063:TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000063) Setting Control TS 7
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000063) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000063) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000063) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000063){NONE}: Deallocated
@@ -415855,7 +415855,7 @@
 MS(TLLI-0xc0000064:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000064) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000064) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000064) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000064) free
 UL_ASS_TBF(DL:TFI-0-0-20:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415863,7 +415863,7 @@
 MS(TLLI-0xc0000064:TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000064) Setting Control TS 3
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000064) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000064) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000064) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000064){NONE}: Deallocated
@@ -415872,7 +415872,7 @@
 MS(TLLI-0xc0000065:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000065) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000065) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000065) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000065) free
 UL_ASS_TBF(DL:TFI-0-0-20:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415880,7 +415880,7 @@
 MS(TLLI-0xc0000065:TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000065) Setting Control TS 4
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000065) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000065) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000065) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000065){NONE}: Deallocated
@@ -415889,7 +415889,7 @@
 MS(TLLI-0xc0000066:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000066) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000066) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000066) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000066) free
 UL_ASS_TBF(DL:TFI-0-0-20:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415897,7 +415897,7 @@
 MS(TLLI-0xc0000066:TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000066) Setting Control TS 5
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000066) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000066) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000066) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000066){NONE}: Deallocated
@@ -415906,7 +415906,7 @@
 MS(TLLI-0xc0000067:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000067) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000067) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000067) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000067) free
 UL_ASS_TBF(DL:TFI-0-0-20:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415914,7 +415914,7 @@
 MS(TLLI-0xc0000067:TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000067) Setting Control TS 6
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000067) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000067) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000067) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000067){NONE}: Deallocated
@@ -415923,7 +415923,7 @@
 MS(TLLI-0xc0000068:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000068) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000068) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000068) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000068) free
 UL_ASS_TBF(DL:TFI-0-0-20:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415931,7 +415931,7 @@
 MS(TLLI-0xc0000068:TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000068) Setting Control TS 7
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000068) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000068) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000068) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000068){NONE}: Deallocated
@@ -415940,7 +415940,7 @@
 MS(TLLI-0xc0000069:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000069) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000069) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000069) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc0000069) free
 UL_ASS_TBF(DL:TFI-0-0-21:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415948,7 +415948,7 @@
 MS(TLLI-0xc0000069:TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc0000069) Setting Control TS 3
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc0000069) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc0000069) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000069) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000069){NONE}: Deallocated
@@ -415957,7 +415957,7 @@
 MS(TLLI-0xc000006a:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000006a) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000006a) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000006a) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006a) free
 UL_ASS_TBF(DL:TFI-0-0-21:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415965,7 +415965,7 @@
 MS(TLLI-0xc000006a:TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006a) Setting Control TS 4
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006a) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006a) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000006a) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000006a){NONE}: Deallocated
@@ -415974,7 +415974,7 @@
 MS(TLLI-0xc000006b:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000006b) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000006b) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000006b) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006b) free
 UL_ASS_TBF(DL:TFI-0-0-21:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415982,7 +415982,7 @@
 MS(TLLI-0xc000006b:TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006b) Setting Control TS 5
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006b) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006b) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000006b) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000006b){NONE}: Deallocated
@@ -415991,7 +415991,7 @@
 MS(TLLI-0xc000006c:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000006c) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000006c) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000006c) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006c) free
 UL_ASS_TBF(DL:TFI-0-0-21:STATE-NEW:GPRS){NONE}: Deallocated
@@ -415999,7 +415999,7 @@
 MS(TLLI-0xc000006c:TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006c) Setting Control TS 6
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006c) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006c) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000006c) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000006c){NONE}: Deallocated
@@ -416008,7 +416008,7 @@
 MS(TLLI-0xc000006d:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000006d) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000006d) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000006d) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006d) free
 UL_ASS_TBF(DL:TFI-0-0-21:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416016,7 +416016,7 @@
 MS(TLLI-0xc000006d:TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006d) Setting Control TS 7
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006d) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006d) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000006d) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000006d){NONE}: Deallocated
@@ -416025,7 +416025,7 @@
 MS(TLLI-0xc000006e:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000006e) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000006e) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000006e) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc000006e) free
 UL_ASS_TBF(DL:TFI-0-0-22:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416033,7 +416033,7 @@
 MS(TLLI-0xc000006e:TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc000006e) Setting Control TS 3
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc000006e) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc000006e) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000006e) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000006e){NONE}: Deallocated
@@ -416042,7 +416042,7 @@
 MS(TLLI-0xc000006f:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000006f) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000006f) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000006f) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc000006f) free
 UL_ASS_TBF(DL:TFI-0-0-22:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416050,7 +416050,7 @@
 MS(TLLI-0xc000006f:TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc000006f) Setting Control TS 4
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc000006f) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc000006f) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000006f) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000006f){NONE}: Deallocated
@@ -416059,7 +416059,7 @@
 MS(TLLI-0xc0000070:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000070) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000070) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000070) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000070) free
 UL_ASS_TBF(DL:TFI-0-0-22:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416067,7 +416067,7 @@
 MS(TLLI-0xc0000070:TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000070) Setting Control TS 5
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000070) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000070) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000070) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000070){NONE}: Deallocated
@@ -416076,7 +416076,7 @@
 MS(TLLI-0xc0000071:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000071) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000071) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000071) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000071) free
 UL_ASS_TBF(DL:TFI-0-0-22:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416084,7 +416084,7 @@
 MS(TLLI-0xc0000071:TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000071) Setting Control TS 6
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000071) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000071) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000071) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000071){NONE}: Deallocated
@@ -416093,7 +416093,7 @@
 MS(TLLI-0xc0000072:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000072) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000072) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000072) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000072) free
 UL_ASS_TBF(DL:TFI-0-0-22:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416101,7 +416101,7 @@
 MS(TLLI-0xc0000072:TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000072) Setting Control TS 7
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000072) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000072) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000072) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000072){NONE}: Deallocated
@@ -416110,7 +416110,7 @@
 MS(TLLI-0xc0000073:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000073) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000073) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000073) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000073) free
 UL_ASS_TBF(DL:TFI-0-0-23:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416118,7 +416118,7 @@
 MS(TLLI-0xc0000073:TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000073) Setting Control TS 3
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000073) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000073) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000073) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000073){NONE}: Deallocated
@@ -416127,7 +416127,7 @@
 MS(TLLI-0xc0000074:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000074) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000074) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000074) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000074) free
 UL_ASS_TBF(DL:TFI-0-0-23:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416135,7 +416135,7 @@
 MS(TLLI-0xc0000074:TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000074) Setting Control TS 4
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000074) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000074) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000074) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000074){NONE}: Deallocated
@@ -416144,7 +416144,7 @@
 MS(TLLI-0xc0000075:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000075) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000075) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000075) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000075) free
 UL_ASS_TBF(DL:TFI-0-0-23:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416152,7 +416152,7 @@
 MS(TLLI-0xc0000075:TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000075) Setting Control TS 5
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000075) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000075) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000075) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000075){NONE}: Deallocated
@@ -416161,7 +416161,7 @@
 MS(TLLI-0xc0000076:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000076) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000076) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000076) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000076) free
 UL_ASS_TBF(DL:TFI-0-0-23:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416169,7 +416169,7 @@
 MS(TLLI-0xc0000076:TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000076) Setting Control TS 6
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000076) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000076) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000076) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000076){NONE}: Deallocated
@@ -416178,7 +416178,7 @@
 MS(TLLI-0xc0000077:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000077) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000077) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000077) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000077) free
 UL_ASS_TBF(DL:TFI-0-0-23:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416186,7 +416186,7 @@
 MS(TLLI-0xc0000077:TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000077) Setting Control TS 7
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000077) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000077) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000077) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000077){NONE}: Deallocated
@@ -416195,7 +416195,7 @@
 MS(TLLI-0xc0000078:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000078) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000078) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000078) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc0000078) free
 UL_ASS_TBF(DL:TFI-0-0-24:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416203,7 +416203,7 @@
 MS(TLLI-0xc0000078:TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc0000078) Setting Control TS 3
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc0000078) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc0000078) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000078) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000078){NONE}: Deallocated
@@ -416212,7 +416212,7 @@
 MS(TLLI-0xc0000079:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000079) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000079) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000079) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc0000079) free
 UL_ASS_TBF(DL:TFI-0-0-24:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416220,7 +416220,7 @@
 MS(TLLI-0xc0000079:TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc0000079) Setting Control TS 4
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc0000079) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc0000079) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000079) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000079){NONE}: Deallocated
@@ -416229,7 +416229,7 @@
 MS(TLLI-0xc000007a:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000007a) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000007a) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000007a) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc000007a) free
 UL_ASS_TBF(DL:TFI-0-0-24:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416237,7 +416237,7 @@
 MS(TLLI-0xc000007a:TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc000007a) Setting Control TS 5
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc000007a) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc000007a) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000007a) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000007a){NONE}: Deallocated
@@ -416246,7 +416246,7 @@
 MS(TLLI-0xc000007b:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000007b) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000007b) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000007b) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc000007b) free
 UL_ASS_TBF(DL:TFI-0-0-24:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416254,7 +416254,7 @@
 MS(TLLI-0xc000007b:TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc000007b) Setting Control TS 6
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc000007b) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc000007b) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000007b) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000007b){NONE}: Deallocated
@@ -416263,7 +416263,7 @@
 MS(TLLI-0xc000007c:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000007c) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000007c) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000007c) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc000007c) free
 UL_ASS_TBF(DL:TFI-0-0-24:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416271,7 +416271,7 @@
 MS(TLLI-0xc000007c:TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc000007c) Setting Control TS 7
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc000007c) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc000007c) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000007c) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000007c){NONE}: Deallocated
@@ -416280,7 +416280,7 @@
 MS(TLLI-0xc000007d:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000007d) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000007d) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000007d) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc000007d) free
 UL_ASS_TBF(DL:TFI-0-0-25:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416288,7 +416288,7 @@
 MS(TLLI-0xc000007d:TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc000007d) Setting Control TS 3
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc000007d) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc000007d) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000007d) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000007d){NONE}: Deallocated
@@ -416297,7 +416297,7 @@
 MS(TLLI-0xc000007e:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000007e) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000007e) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000007e) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc000007e) free
 UL_ASS_TBF(DL:TFI-0-0-25:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416305,7 +416305,7 @@
 MS(TLLI-0xc000007e:TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc000007e) Setting Control TS 4
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc000007e) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc000007e) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000007e) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000007e){NONE}: Deallocated
@@ -416314,7 +416314,7 @@
 MS(TLLI-0xc000007f:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000007f) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000007f) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000007f) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc000007f) free
 UL_ASS_TBF(DL:TFI-0-0-25:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416322,7 +416322,7 @@
 MS(TLLI-0xc000007f:TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc000007f) Setting Control TS 5
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc000007f) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc000007f) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000007f) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000007f){NONE}: Deallocated
@@ -416331,7 +416331,7 @@
 MS(TLLI-0xc0000080:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000080) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000080) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000080) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc0000080) free
 UL_ASS_TBF(DL:TFI-0-0-25:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416339,7 +416339,7 @@
 MS(TLLI-0xc0000080:TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc0000080) Setting Control TS 6
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc0000080) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc0000080) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000080) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000080){NONE}: Deallocated
@@ -416348,7 +416348,7 @@
 MS(TLLI-0xc0000081:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000081) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000081) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000081) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc0000081) free
 UL_ASS_TBF(DL:TFI-0-0-25:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416356,7 +416356,7 @@
 MS(TLLI-0xc0000081:TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc0000081) Setting Control TS 7
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc0000081) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc0000081) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000081) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000081){NONE}: Deallocated
@@ -416365,7 +416365,7 @@
 MS(TLLI-0xc0000082:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000082) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000082) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000082) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000082) free
 UL_ASS_TBF(DL:TFI-0-0-26:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416373,7 +416373,7 @@
 MS(TLLI-0xc0000082:TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000082) Setting Control TS 3
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000082) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000082) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000082) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000082){NONE}: Deallocated
@@ -416382,7 +416382,7 @@
 MS(TLLI-0xc0000083:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000083) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000083) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000083) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000083) free
 UL_ASS_TBF(DL:TFI-0-0-26:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416390,7 +416390,7 @@
 MS(TLLI-0xc0000083:TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000083) Setting Control TS 4
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000083) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000083) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000083) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000083){NONE}: Deallocated
@@ -416399,7 +416399,7 @@
 MS(TLLI-0xc0000084:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000084) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000084) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000084) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000084) free
 UL_ASS_TBF(DL:TFI-0-0-26:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416407,7 +416407,7 @@
 MS(TLLI-0xc0000084:TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000084) Setting Control TS 5
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000084) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000084) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000084) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000084){NONE}: Deallocated
@@ -416416,7 +416416,7 @@
 MS(TLLI-0xc0000085:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000085) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000085) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000085) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000085) free
 UL_ASS_TBF(DL:TFI-0-0-26:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416424,7 +416424,7 @@
 MS(TLLI-0xc0000085:TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000085) Setting Control TS 6
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000085) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000085) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000085) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000085){NONE}: Deallocated
@@ -416433,7 +416433,7 @@
 MS(TLLI-0xc0000086:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000086) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000086) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000086) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000086) free
 UL_ASS_TBF(DL:TFI-0-0-26:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416441,7 +416441,7 @@
 MS(TLLI-0xc0000086:TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000086) Setting Control TS 7
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000086) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000086) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000086) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000086){NONE}: Deallocated
@@ -416450,7 +416450,7 @@
 MS(TLLI-0xc0000087:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000087) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000087) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000087) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc0000087) free
 UL_ASS_TBF(DL:TFI-0-0-27:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416458,7 +416458,7 @@
 MS(TLLI-0xc0000087:TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc0000087) Setting Control TS 3
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc0000087) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc0000087) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000087) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000087){NONE}: Deallocated
@@ -416467,7 +416467,7 @@
 MS(TLLI-0xc0000088:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000088) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000088) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000088) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc0000088) free
 UL_ASS_TBF(DL:TFI-0-0-27:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416475,7 +416475,7 @@
 MS(TLLI-0xc0000088:TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc0000088) Setting Control TS 4
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc0000088) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc0000088) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000088) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000088){NONE}: Deallocated
@@ -416484,7 +416484,7 @@
 MS(TLLI-0xc0000089:TA-220:MSCLS-46-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000089) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000089) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000089) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc0000089) free
 UL_ASS_TBF(DL:TFI-0-0-27:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416492,7 +416492,7 @@
 MS(TLLI-0xc0000089:TA-220:MSCLS-46-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc0000089) Setting Control TS 5
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc0000089) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc0000089) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000089) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000089){NONE}: Deallocated
@@ -416501,7 +416501,7 @@
 MS(TLLI-0xc000008a:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000008a) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000008a) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000008a) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc000008a) free
 UL_ASS_TBF(DL:TFI-0-0-27:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416509,7 +416509,7 @@
 MS(TLLI-0xc000008a:TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc000008a) Setting Control TS 6
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc000008a) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc000008a) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000008a) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000008a){NONE}: Deallocated
@@ -416518,7 +416518,7 @@
 MS(TLLI-0xc000008b:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000008b) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000008b) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000008b) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc000008b) free
 UL_ASS_TBF(DL:TFI-0-0-27:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416526,7 +416526,7 @@
 MS(TLLI-0xc000008b:TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc000008b) Setting Control TS 7
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc000008b) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc000008b) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000008b) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000008b){NONE}: Deallocated
@@ -416535,7 +416535,7 @@
 MS(TLLI-0xc000008c:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000008c) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000008c) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000008c) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008c) free
 UL_ASS_TBF(DL:TFI-0-0-28:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416543,7 +416543,7 @@
 MS(TLLI-0xc000008c:TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008c) Setting Control TS 3
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008c) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008c) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000008c) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000008c){NONE}: Deallocated
@@ -416552,7 +416552,7 @@
 MS(TLLI-0xc000008d:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000008d) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000008d) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000008d) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008d) free
 UL_ASS_TBF(DL:TFI-0-0-28:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416560,7 +416560,7 @@
 MS(TLLI-0xc000008d:TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008d) Setting Control TS 4
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008d) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008d) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000008d) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000008d){NONE}: Deallocated
@@ -416569,7 +416569,7 @@
 MS(TLLI-0xc000008e:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000008e) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000008e) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000008e) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008e) free
 UL_ASS_TBF(DL:TFI-0-0-28:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416577,7 +416577,7 @@
 MS(TLLI-0xc000008e:TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008e) Setting Control TS 5
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008e) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008e) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000008e) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000008e){NONE}: Deallocated
@@ -416586,7 +416586,7 @@
 MS(TLLI-0xc000008f:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000008f) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000008f) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000008f) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008f) free
 UL_ASS_TBF(DL:TFI-0-0-28:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416594,7 +416594,7 @@
 MS(TLLI-0xc000008f:TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008f) Setting Control TS 6
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008f) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008f) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000008f) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000008f){NONE}: Deallocated
@@ -416603,7 +416603,7 @@
 MS(TLLI-0xc0000090:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000090) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000090) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000090) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc0000090) free
 UL_ASS_TBF(DL:TFI-0-0-28:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416611,7 +416611,7 @@
 MS(TLLI-0xc0000090:TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc0000090) Setting Control TS 7
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc0000090) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc0000090) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000090) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000090){NONE}: Deallocated
@@ -416620,7 +416620,7 @@
 MS(TLLI-0xc0000091:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000091) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000091) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000091) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000091) free
 UL_ASS_TBF(DL:TFI-0-0-29:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416628,7 +416628,7 @@
 MS(TLLI-0xc0000091:TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000091) Setting Control TS 3
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000091) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000091) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000091) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000091){NONE}: Deallocated
@@ -416637,7 +416637,7 @@
 MS(TLLI-0xc0000092:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000092) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000092) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000092) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000092) free
 UL_ASS_TBF(DL:TFI-0-0-29:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416645,7 +416645,7 @@
 MS(TLLI-0xc0000092:TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000092) Setting Control TS 4
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000092) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000092) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000092) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000092){NONE}: Deallocated
@@ -416654,7 +416654,7 @@
 MS(TLLI-0xc0000093:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000093) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000093) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000093) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000093) free
 UL_ASS_TBF(DL:TFI-0-0-29:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416662,7 +416662,7 @@
 MS(TLLI-0xc0000093:TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000093) Setting Control TS 5
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000093) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000093) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000093) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000093){NONE}: Deallocated
@@ -416671,7 +416671,7 @@
 MS(TLLI-0xc0000094:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000094) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000094) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000094) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000094) free
 UL_ASS_TBF(DL:TFI-0-0-29:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416679,7 +416679,7 @@
 MS(TLLI-0xc0000094:TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000094) Setting Control TS 6
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000094) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000094) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000094) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000094){NONE}: Deallocated
@@ -416688,7 +416688,7 @@
 MS(TLLI-0xc0000095:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000095) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000095) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000095) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000095) free
 UL_ASS_TBF(DL:TFI-0-0-29:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416696,7 +416696,7 @@
 MS(TLLI-0xc0000095:TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000095) Setting Control TS 7
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000095) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000095) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000095) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000095){NONE}: Deallocated
@@ -416705,7 +416705,7 @@
 MS(TLLI-0xc0000096:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000096) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000096) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000096) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000096) free
 UL_ASS_TBF(DL:TFI-0-0-30:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416713,7 +416713,7 @@
 MS(TLLI-0xc0000096:TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000096) Setting Control TS 3
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000096) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000096) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000096) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000096){NONE}: Deallocated
@@ -416722,7 +416722,7 @@
 MS(TLLI-0xc0000097:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000097) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000097) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000097) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000097) free
 UL_ASS_TBF(DL:TFI-0-0-30:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416730,7 +416730,7 @@
 MS(TLLI-0xc0000097:TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000097) Setting Control TS 4
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000097) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000097) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000097) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000097){NONE}: Deallocated
@@ -416739,7 +416739,7 @@
 MS(TLLI-0xc0000098:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000098) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000098) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000098) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000098) free
 UL_ASS_TBF(DL:TFI-0-0-30:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416747,7 +416747,7 @@
 MS(TLLI-0xc0000098:TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000098) Setting Control TS 5
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000098) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000098) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000098) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000098){NONE}: Deallocated
@@ -416756,7 +416756,7 @@
 MS(TLLI-0xc0000099:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000099) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000099) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000099) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000099) free
 UL_ASS_TBF(DL:TFI-0-0-30:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416764,7 +416764,7 @@
 MS(TLLI-0xc0000099:TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000099) Setting Control TS 6
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000099) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000099) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000099) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000099){NONE}: Deallocated
@@ -416773,7 +416773,7 @@
 MS(TLLI-0xc000009a:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000009a) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000009a) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000009a) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc000009a) free
 UL_ASS_TBF(DL:TFI-0-0-30:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416781,7 +416781,7 @@
 MS(TLLI-0xc000009a:TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc000009a) Setting Control TS 7
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc000009a) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc000009a) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000009a) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000009a){NONE}: Deallocated
@@ -416790,7 +416790,7 @@
 MS(TLLI-0xc000009b:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000009b) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000009b) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000009b) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009b) free
 UL_ASS_TBF(DL:TFI-0-0-31:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416798,7 +416798,7 @@
 MS(TLLI-0xc000009b:TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009b) Setting Control TS 3
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009b) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009b) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000009b) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000009b){NONE}: Deallocated
@@ -416807,7 +416807,7 @@
 MS(TLLI-0xc000009c:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000009c) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000009c) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000009c) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009c) free
 UL_ASS_TBF(DL:TFI-0-0-31:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416815,7 +416815,7 @@
 MS(TLLI-0xc000009c:TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009c) Setting Control TS 4
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009c) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009c) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000009c) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000009c){NONE}: Deallocated
@@ -416824,7 +416824,7 @@
 MS(TLLI-0xc000009d:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000009d) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000009d) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000009d) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009d) free
 UL_ASS_TBF(DL:TFI-0-0-31:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416832,7 +416832,7 @@
 MS(TLLI-0xc000009d:TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009d) Setting Control TS 5
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009d) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009d) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000009d) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000009d){NONE}: Deallocated
@@ -416841,7 +416841,7 @@
 MS(TLLI-0xc000009e:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000009e) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000009e) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000009e) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009e) free
 UL_ASS_TBF(DL:TFI-0-0-31:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416849,7 +416849,7 @@
 MS(TLLI-0xc000009e:TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009e) Setting Control TS 6
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009e) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009e) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000009e) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000009e){NONE}: Deallocated
@@ -416858,7 +416858,7 @@
 MS(TLLI-0xc000009f:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000009f) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000009f) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000009f) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009f) free
 UL_ASS_TBF(DL:TFI-0-0-31:STATE-NEW:GPRS){NONE}: Deallocated
@@ -416866,7 +416866,7 @@
 MS(TLLI-0xc000009f:TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009f) Setting Control TS 7
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009f) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009f) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000009f) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000009f){NONE}: Deallocated
@@ -416886,7 +416886,7 @@
 MS(TLLI-0xc0000000:TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000001) free
@@ -416895,7 +416895,7 @@
 MS(TLLI-0xc0000001:TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000001) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000001) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000001) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000002) free
@@ -416904,7 +416904,7 @@
 MS(TLLI-0xc0000002:TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000002) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000002) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000002) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000003) free
@@ -416913,7 +416913,7 @@
 MS(TLLI-0xc0000003:TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000003) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000003) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000003) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000004) free
@@ -416922,7 +416922,7 @@
 MS(TLLI-0xc0000004:TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000004) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000004) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000004) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000005) free
@@ -416931,7 +416931,7 @@
 MS(TLLI-0xc0000005:TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000005) Setting Control TS 3
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000005) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000005) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000006) free
@@ -416940,7 +416940,7 @@
 MS(TLLI-0xc0000006:TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000006) Setting Control TS 4
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000006) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000006) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000007) free
@@ -416949,7 +416949,7 @@
 MS(TLLI-0xc0000007:TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000007) Setting Control TS 5
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000007) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000007) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000008) free
@@ -416958,7 +416958,7 @@
 MS(TLLI-0xc0000008:TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000008) Setting Control TS 6
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000008) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000008) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000009) free
@@ -416967,7 +416967,7 @@
 MS(TLLI-0xc0000009:TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000009) Setting Control TS 7
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000009) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000009) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000a) free
@@ -416976,7 +416976,7 @@
 MS(TLLI-0xc000000a:TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000a) Setting Control TS 3
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000a) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000a) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000b) free
@@ -416985,7 +416985,7 @@
 MS(TLLI-0xc000000b:TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000b) Setting Control TS 4
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000b) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000b) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000c) free
@@ -416994,7 +416994,7 @@
 MS(TLLI-0xc000000c:TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000c) Setting Control TS 5
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000c) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000c) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000d) free
@@ -417003,7 +417003,7 @@
 MS(TLLI-0xc000000d:TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000d) Setting Control TS 6
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000d) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000d) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000e) free
@@ -417012,7 +417012,7 @@
 MS(TLLI-0xc000000e:TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000e) Setting Control TS 7
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000e) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000e) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc000000f) free
@@ -417021,7 +417021,7 @@
 MS(TLLI-0xc000000f:TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc000000f) Setting Control TS 3
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc000000f) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc000000f) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000010) free
@@ -417030,7 +417030,7 @@
 MS(TLLI-0xc0000010:TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000010) Setting Control TS 4
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000010) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000010) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000011) free
@@ -417039,7 +417039,7 @@
 MS(TLLI-0xc0000011:TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000011) Setting Control TS 5
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000011) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000011) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000012) free
@@ -417048,7 +417048,7 @@
 MS(TLLI-0xc0000012:TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000012) Setting Control TS 6
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000012) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000012) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000013) free
@@ -417057,7 +417057,7 @@
 MS(TLLI-0xc0000013:TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000013) Setting Control TS 7
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000013) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000013) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000014) free
@@ -417066,7 +417066,7 @@
 MS(TLLI-0xc0000014:TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000014) Setting Control TS 3
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000014) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000014) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000015) free
@@ -417075,7 +417075,7 @@
 MS(TLLI-0xc0000015:TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000015) Setting Control TS 4
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000015) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000015) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000016) free
@@ -417084,7 +417084,7 @@
 MS(TLLI-0xc0000016:TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000016) Setting Control TS 5
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000016) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000016) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000017) free
@@ -417093,7 +417093,7 @@
 MS(TLLI-0xc0000017:TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000017) Setting Control TS 6
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000017) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000017) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000018) free
@@ -417102,7 +417102,7 @@
 MS(TLLI-0xc0000018:TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000018) Setting Control TS 7
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000018) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000018) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc0000019) free
@@ -417111,7 +417111,7 @@
 MS(TLLI-0xc0000019:TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc0000019) Setting Control TS 3
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc0000019) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc0000019) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001a) free
@@ -417120,7 +417120,7 @@
 MS(TLLI-0xc000001a:TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001a) Setting Control TS 4
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001a) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001a) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001b) free
@@ -417129,7 +417129,7 @@
 MS(TLLI-0xc000001b:TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001b) Setting Control TS 5
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001b) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001b) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001c) free
@@ -417138,7 +417138,7 @@
 MS(TLLI-0xc000001c:TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001c) Setting Control TS 6
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001c) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001c) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001d) free
@@ -417147,7 +417147,7 @@
 MS(TLLI-0xc000001d:TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001d) Setting Control TS 7
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001d) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000001d) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc000001e) free
@@ -417156,7 +417156,7 @@
 MS(TLLI-0xc000001e:TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc000001e) Setting Control TS 3
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc000001e) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc000001e) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc000001f) free
@@ -417165,7 +417165,7 @@
 MS(TLLI-0xc000001f:TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc000001f) Setting Control TS 4
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc000001f) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc000001f) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000020) free
@@ -417174,7 +417174,7 @@
 MS(TLLI-0xc0000020:TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000020) Setting Control TS 5
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000020) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000020) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000021) free
@@ -417183,7 +417183,7 @@
 MS(TLLI-0xc0000021:TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000021) Setting Control TS 6
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000021) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000021) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000022) free
@@ -417192,7 +417192,7 @@
 MS(TLLI-0xc0000022:TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000022) Setting Control TS 7
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000022) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000022) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000023) free
@@ -417201,7 +417201,7 @@
 MS(TLLI-0xc0000023:TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000023) Setting Control TS 3
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000023) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000023) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000024) free
@@ -417210,7 +417210,7 @@
 MS(TLLI-0xc0000024:TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000024) Setting Control TS 4
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000024) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000024) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000025) free
@@ -417219,7 +417219,7 @@
 MS(TLLI-0xc0000025:TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000025) Setting Control TS 5
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000025) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000025) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000026) free
@@ -417228,7 +417228,7 @@
 MS(TLLI-0xc0000026:TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000026) Setting Control TS 6
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000026) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000026) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000027) free
@@ -417237,7 +417237,7 @@
 MS(TLLI-0xc0000027:TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000027) Setting Control TS 7
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000027) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000027) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc0000028) free
@@ -417246,7 +417246,7 @@
 MS(TLLI-0xc0000028:TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc0000028) Setting Control TS 3
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc0000028) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc0000028) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc0000029) free
@@ -417255,7 +417255,7 @@
 MS(TLLI-0xc0000029:TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc0000029) Setting Control TS 4
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc0000029) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc0000029) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000002a) free
@@ -417264,7 +417264,7 @@
 MS(TLLI-0xc000002a:TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000002a) Setting Control TS 5
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000002a) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000002a) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000002b) free
@@ -417273,7 +417273,7 @@
 MS(TLLI-0xc000002b:TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000002b) Setting Control TS 6
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000002b) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000002b) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000002c) free
@@ -417282,7 +417282,7 @@
 MS(TLLI-0xc000002c:TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000002c) Setting Control TS 7
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000002c) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000002c) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000002d) free
@@ -417291,7 +417291,7 @@
 MS(TLLI-0xc000002d:TA-220:MSCLS-46-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000002d) Setting Control TS 3
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000002d) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000002d) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000002e) free
@@ -417300,7 +417300,7 @@
 MS(TLLI-0xc000002e:TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000002e) Setting Control TS 4
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000002e) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000002e) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000002f) free
@@ -417309,7 +417309,7 @@
 MS(TLLI-0xc000002f:TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000002f) Setting Control TS 5
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000002f) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000002f) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000030) free
@@ -417318,7 +417318,7 @@
 MS(TLLI-0xc0000030:TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000030) Setting Control TS 6
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000030) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000030) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000031) free
@@ -417327,7 +417327,7 @@
 MS(TLLI-0xc0000031:TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000031) Setting Control TS 7
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000031) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000031) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000032) free
@@ -417336,7 +417336,7 @@
 MS(TLLI-0xc0000032:TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000032) Setting Control TS 3
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000032) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000032) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000033) free
@@ -417345,7 +417345,7 @@
 MS(TLLI-0xc0000033:TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000033) Setting Control TS 4
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000033) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000033) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000034) free
@@ -417354,7 +417354,7 @@
 MS(TLLI-0xc0000034:TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000034) Setting Control TS 5
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000034) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000034) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000035) free
@@ -417363,7 +417363,7 @@
 MS(TLLI-0xc0000035:TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000035) Setting Control TS 6
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000035) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000035) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000036) free
@@ -417372,7 +417372,7 @@
 MS(TLLI-0xc0000036:TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000036) Setting Control TS 7
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000036) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000036) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000037) free
@@ -417381,7 +417381,7 @@
 MS(TLLI-0xc0000037:TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000037) Setting Control TS 3
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000037) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000037) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000038) free
@@ -417390,7 +417390,7 @@
 MS(TLLI-0xc0000038:TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000038) Setting Control TS 4
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000038) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000038) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000039) free
@@ -417399,7 +417399,7 @@
 MS(TLLI-0xc0000039:TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000039) Setting Control TS 5
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000039) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000039) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000003a) free
@@ -417408,7 +417408,7 @@
 MS(TLLI-0xc000003a:TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000003a) Setting Control TS 6
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000003a) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000003a) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000003b) free
@@ -417417,7 +417417,7 @@
 MS(TLLI-0xc000003b:TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000003b) Setting Control TS 7
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000003b) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000003b) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000003c) free
@@ -417426,7 +417426,7 @@
 MS(TLLI-0xc000003c:TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000003c) Setting Control TS 3
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000003c) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000003c) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000003d) free
@@ -417435,7 +417435,7 @@
 MS(TLLI-0xc000003d:TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000003d) Setting Control TS 4
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000003d) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000003d) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000003e) free
@@ -417444,7 +417444,7 @@
 MS(TLLI-0xc000003e:TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000003e) Setting Control TS 5
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000003e) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000003e) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000003f) free
@@ -417453,7 +417453,7 @@
 MS(TLLI-0xc000003f:TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000003f) Setting Control TS 6
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000003f) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000003f) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc0000040) free
@@ -417462,7 +417462,7 @@
 MS(TLLI-0xc0000040:TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc0000040) Setting Control TS 7
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc0000040) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc0000040) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000041) free
@@ -417471,7 +417471,7 @@
 MS(TLLI-0xc0000041:TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000041) Setting Control TS 3
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000041) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000041) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000042) free
@@ -417480,7 +417480,7 @@
 MS(TLLI-0xc0000042:TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000042) Setting Control TS 4
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000042) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000042) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000043) free
@@ -417489,7 +417489,7 @@
 MS(TLLI-0xc0000043:TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000043) Setting Control TS 5
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000043) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000043) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000044) free
@@ -417498,7 +417498,7 @@
 MS(TLLI-0xc0000044:TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000044) Setting Control TS 6
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000044) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000044) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000045) free
@@ -417507,7 +417507,7 @@
 MS(TLLI-0xc0000045:TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000045) Setting Control TS 7
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000045) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000045) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000046) free
@@ -417516,7 +417516,7 @@
 MS(TLLI-0xc0000046:TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000046) Setting Control TS 3
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000046) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000046) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000047) free
@@ -417525,7 +417525,7 @@
 MS(TLLI-0xc0000047:TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000047) Setting Control TS 4
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000047) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000047) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000048) free
@@ -417534,7 +417534,7 @@
 MS(TLLI-0xc0000048:TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000048) Setting Control TS 5
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000048) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000048) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000049) free
@@ -417543,7 +417543,7 @@
 MS(TLLI-0xc0000049:TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000049) Setting Control TS 6
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000049) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000049) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc000004a) free
@@ -417552,7 +417552,7 @@
 MS(TLLI-0xc000004a:TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc000004a) Setting Control TS 7
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc000004a) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc000004a) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004b) free
@@ -417561,7 +417561,7 @@
 MS(TLLI-0xc000004b:TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004b) Setting Control TS 3
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004b) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004b) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004c) free
@@ -417570,7 +417570,7 @@
 MS(TLLI-0xc000004c:TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004c) Setting Control TS 4
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004c) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004c) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004d) free
@@ -417579,7 +417579,7 @@
 MS(TLLI-0xc000004d:TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004d) Setting Control TS 5
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004d) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004d) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004e) free
@@ -417588,7 +417588,7 @@
 MS(TLLI-0xc000004e:TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004e) Setting Control TS 6
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004e) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004e) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004f) free
@@ -417597,7 +417597,7 @@
 MS(TLLI-0xc000004f:TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004f) Setting Control TS 7
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004f) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000004f) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000050) free
@@ -417606,7 +417606,7 @@
 MS(TLLI-0xc0000050:TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000050) Setting Control TS 3
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000050) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000050) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000051) free
@@ -417615,7 +417615,7 @@
 MS(TLLI-0xc0000051:TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000051) Setting Control TS 4
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000051) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000051) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000052) free
@@ -417624,7 +417624,7 @@
 MS(TLLI-0xc0000052:TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000052) Setting Control TS 5
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000052) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000052) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000053) free
@@ -417633,7 +417633,7 @@
 MS(TLLI-0xc0000053:TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000053) Setting Control TS 6
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000053) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000053) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000054) free
@@ -417642,7 +417642,7 @@
 MS(TLLI-0xc0000054:TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000054) Setting Control TS 7
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000054) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000054) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000055) free
@@ -417651,7 +417651,7 @@
 MS(TLLI-0xc0000055:TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000055) Setting Control TS 3
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000055) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000055) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000056) free
@@ -417660,7 +417660,7 @@
 MS(TLLI-0xc0000056:TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000056) Setting Control TS 4
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000056) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000056) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000057) free
@@ -417669,7 +417669,7 @@
 MS(TLLI-0xc0000057:TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000057) Setting Control TS 5
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000057) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000057) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000058) free
@@ -417678,7 +417678,7 @@
 MS(TLLI-0xc0000058:TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000058) Setting Control TS 6
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000058) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000058) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000059) free
@@ -417687,7 +417687,7 @@
 MS(TLLI-0xc0000059:TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000059) Setting Control TS 7
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000059) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000059) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005a) free
@@ -417696,7 +417696,7 @@
 MS(TLLI-0xc000005a:TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005a) Setting Control TS 3
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005a) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005a) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005b) free
@@ -417705,7 +417705,7 @@
 MS(TLLI-0xc000005b:TA-220:MSCLS-46-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005b) Setting Control TS 4
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005b) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005b) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005c) free
@@ -417714,7 +417714,7 @@
 MS(TLLI-0xc000005c:TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005c) Setting Control TS 5
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005c) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005c) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005d) free
@@ -417723,7 +417723,7 @@
 MS(TLLI-0xc000005d:TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005d) Setting Control TS 6
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005d) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005d) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005e) free
@@ -417732,7 +417732,7 @@
 MS(TLLI-0xc000005e:TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005e) Setting Control TS 7
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005e) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000005e) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc000005f) free
@@ -417741,7 +417741,7 @@
 MS(TLLI-0xc000005f:TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc000005f) Setting Control TS 3
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc000005f) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc000005f) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000060) free
@@ -417750,7 +417750,7 @@
 MS(TLLI-0xc0000060:TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000060) Setting Control TS 4
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000060) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000060) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000061) free
@@ -417759,7 +417759,7 @@
 MS(TLLI-0xc0000061:TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000061) Setting Control TS 5
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000061) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000061) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000062) free
@@ -417768,7 +417768,7 @@
 MS(TLLI-0xc0000062:TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000062) Setting Control TS 6
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000062) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000062) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000063) free
@@ -417777,7 +417777,7 @@
 MS(TLLI-0xc0000063:TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000063) Setting Control TS 7
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000063) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000063) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000064) free
@@ -417786,7 +417786,7 @@
 MS(TLLI-0xc0000064:TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000064) Setting Control TS 3
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000064) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000064) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000065) free
@@ -417795,7 +417795,7 @@
 MS(TLLI-0xc0000065:TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000065) Setting Control TS 4
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000065) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000065) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000066) free
@@ -417804,7 +417804,7 @@
 MS(TLLI-0xc0000066:TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000066) Setting Control TS 5
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000066) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000066) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000067) free
@@ -417813,7 +417813,7 @@
 MS(TLLI-0xc0000067:TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000067) Setting Control TS 6
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000067) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000067) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000068) free
@@ -417822,7 +417822,7 @@
 MS(TLLI-0xc0000068:TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000068) Setting Control TS 7
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000068) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000068) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc0000069) free
@@ -417831,7 +417831,7 @@
 MS(TLLI-0xc0000069:TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc0000069) Setting Control TS 3
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc0000069) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc0000069) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006a) free
@@ -417840,7 +417840,7 @@
 MS(TLLI-0xc000006a:TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006a) Setting Control TS 4
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006a) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006a) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006b) free
@@ -417849,7 +417849,7 @@
 MS(TLLI-0xc000006b:TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006b) Setting Control TS 5
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006b) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006b) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006c) free
@@ -417858,7 +417858,7 @@
 MS(TLLI-0xc000006c:TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006c) Setting Control TS 6
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006c) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006c) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006d) free
@@ -417867,7 +417867,7 @@
 MS(TLLI-0xc000006d:TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006d) Setting Control TS 7
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006d) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006d) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc000006e) free
@@ -417876,7 +417876,7 @@
 MS(TLLI-0xc000006e:TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc000006e) Setting Control TS 3
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc000006e) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc000006e) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc000006f) free
@@ -417885,7 +417885,7 @@
 MS(TLLI-0xc000006f:TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc000006f) Setting Control TS 4
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc000006f) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc000006f) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000070) free
@@ -417894,7 +417894,7 @@
 MS(TLLI-0xc0000070:TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000070) Setting Control TS 5
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000070) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000070) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000071) free
@@ -417903,7 +417903,7 @@
 MS(TLLI-0xc0000071:TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000071) Setting Control TS 6
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000071) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000071) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000072) free
@@ -417912,7 +417912,7 @@
 MS(TLLI-0xc0000072:TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000072) Setting Control TS 7
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000072) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000072) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000073) free
@@ -417921,7 +417921,7 @@
 MS(TLLI-0xc0000073:TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000073) Setting Control TS 3
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000073) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000073) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000074) free
@@ -417930,7 +417930,7 @@
 MS(TLLI-0xc0000074:TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000074) Setting Control TS 4
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000074) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000074) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000075) free
@@ -417939,7 +417939,7 @@
 MS(TLLI-0xc0000075:TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000075) Setting Control TS 5
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000075) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000075) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000076) free
@@ -417948,7 +417948,7 @@
 MS(TLLI-0xc0000076:TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000076) Setting Control TS 6
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000076) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000076) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000077) free
@@ -417957,7 +417957,7 @@
 MS(TLLI-0xc0000077:TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000077) Setting Control TS 7
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000077) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000077) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc0000078) free
@@ -417966,7 +417966,7 @@
 MS(TLLI-0xc0000078:TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc0000078) Setting Control TS 3
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc0000078) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc0000078) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc0000079) free
@@ -417975,7 +417975,7 @@
 MS(TLLI-0xc0000079:TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc0000079) Setting Control TS 4
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc0000079) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc0000079) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc000007a) free
@@ -417984,7 +417984,7 @@
 MS(TLLI-0xc000007a:TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc000007a) Setting Control TS 5
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc000007a) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc000007a) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc000007b) free
@@ -417993,7 +417993,7 @@
 MS(TLLI-0xc000007b:TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc000007b) Setting Control TS 6
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc000007b) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc000007b) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc000007c) free
@@ -418002,7 +418002,7 @@
 MS(TLLI-0xc000007c:TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc000007c) Setting Control TS 7
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc000007c) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc000007c) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc000007d) free
@@ -418011,7 +418011,7 @@
 MS(TLLI-0xc000007d:TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc000007d) Setting Control TS 3
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc000007d) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc000007d) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc000007e) free
@@ -418020,7 +418020,7 @@
 MS(TLLI-0xc000007e:TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc000007e) Setting Control TS 4
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc000007e) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc000007e) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc000007f) free
@@ -418029,7 +418029,7 @@
 MS(TLLI-0xc000007f:TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc000007f) Setting Control TS 5
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc000007f) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc000007f) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc0000080) free
@@ -418038,7 +418038,7 @@
 MS(TLLI-0xc0000080:TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc0000080) Setting Control TS 6
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc0000080) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc0000080) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc0000081) free
@@ -418047,7 +418047,7 @@
 MS(TLLI-0xc0000081:TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc0000081) Setting Control TS 7
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc0000081) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc0000081) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000082) free
@@ -418056,7 +418056,7 @@
 MS(TLLI-0xc0000082:TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000082) Setting Control TS 3
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000082) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000082) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000083) free
@@ -418065,7 +418065,7 @@
 MS(TLLI-0xc0000083:TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000083) Setting Control TS 4
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000083) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000083) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000084) free
@@ -418074,7 +418074,7 @@
 MS(TLLI-0xc0000084:TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000084) Setting Control TS 5
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000084) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000084) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000085) free
@@ -418083,7 +418083,7 @@
 MS(TLLI-0xc0000085:TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000085) Setting Control TS 6
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000085) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000085) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000086) free
@@ -418092,7 +418092,7 @@
 MS(TLLI-0xc0000086:TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000086) Setting Control TS 7
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000086) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000086) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc0000087) free
@@ -418101,7 +418101,7 @@
 MS(TLLI-0xc0000087:TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc0000087) Setting Control TS 3
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc0000087) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc0000087) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc0000088) free
@@ -418110,7 +418110,7 @@
 MS(TLLI-0xc0000088:TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc0000088) Setting Control TS 4
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc0000088) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc0000088) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc0000089) free
@@ -418119,7 +418119,7 @@
 MS(TLLI-0xc0000089:TA-220:MSCLS-46-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc0000089) Setting Control TS 5
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc0000089) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc0000089) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc000008a) free
@@ -418128,7 +418128,7 @@
 MS(TLLI-0xc000008a:TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc000008a) Setting Control TS 6
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc000008a) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc000008a) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc000008b) free
@@ -418137,7 +418137,7 @@
 MS(TLLI-0xc000008b:TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc000008b) Setting Control TS 7
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc000008b) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc000008b) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008c) free
@@ -418146,7 +418146,7 @@
 MS(TLLI-0xc000008c:TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008c) Setting Control TS 3
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008c) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008c) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008d) free
@@ -418155,7 +418155,7 @@
 MS(TLLI-0xc000008d:TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008d) Setting Control TS 4
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008d) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008d) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008e) free
@@ -418164,7 +418164,7 @@
 MS(TLLI-0xc000008e:TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008e) Setting Control TS 5
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008e) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008e) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008f) free
@@ -418173,7 +418173,7 @@
 MS(TLLI-0xc000008f:TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008f) Setting Control TS 6
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008f) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008f) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc0000090) free
@@ -418182,7 +418182,7 @@
 MS(TLLI-0xc0000090:TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc0000090) Setting Control TS 7
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc0000090) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc0000090) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000091) free
@@ -418191,7 +418191,7 @@
 MS(TLLI-0xc0000091:TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000091) Setting Control TS 3
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000091) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000091) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000092) free
@@ -418200,7 +418200,7 @@
 MS(TLLI-0xc0000092:TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000092) Setting Control TS 4
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000092) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000092) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000093) free
@@ -418209,7 +418209,7 @@
 MS(TLLI-0xc0000093:TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000093) Setting Control TS 5
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000093) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000093) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000094) free
@@ -418218,7 +418218,7 @@
 MS(TLLI-0xc0000094:TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000094) Setting Control TS 6
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000094) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000094) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000095) free
@@ -418227,7 +418227,7 @@
 MS(TLLI-0xc0000095:TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000095) Setting Control TS 7
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000095) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000095) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000096) free
@@ -418236,7 +418236,7 @@
 MS(TLLI-0xc0000096:TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000096) Setting Control TS 3
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000096) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000096) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000097) free
@@ -418245,7 +418245,7 @@
 MS(TLLI-0xc0000097:TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000097) Setting Control TS 4
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000097) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000097) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000098) free
@@ -418254,7 +418254,7 @@
 MS(TLLI-0xc0000098:TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000098) Setting Control TS 5
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000098) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000098) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000099) free
@@ -418263,7 +418263,7 @@
 MS(TLLI-0xc0000099:TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000099) Setting Control TS 6
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000099) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000099) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc000009a) free
@@ -418272,7 +418272,7 @@
 MS(TLLI-0xc000009a:TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc000009a) Setting Control TS 7
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc000009a) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc000009a) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009b) free
@@ -418281,7 +418281,7 @@
 MS(TLLI-0xc000009b:TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009b) Setting Control TS 3
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009b) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009b) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009c) free
@@ -418290,7 +418290,7 @@
 MS(TLLI-0xc000009c:TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009c) Setting Control TS 4
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009c) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009c) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009d) free
@@ -418299,7 +418299,7 @@
 MS(TLLI-0xc000009d:TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009d) Setting Control TS 5
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009d) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009d) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009e) free
@@ -418308,7 +418308,7 @@
 MS(TLLI-0xc000009e:TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009e) Setting Control TS 6
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009e) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009e) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009f) free
@@ -418317,7 +418317,7 @@
 MS(TLLI-0xc000009f:TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009f) Setting Control TS 7
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009f) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009f) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
@@ -418331,12 +418331,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418344,12 +418344,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418357,12 +418357,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = c0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418370,12 +418370,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418383,12 +418383,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418396,12 +418396,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418409,12 +418409,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418422,12 +418422,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418435,12 +418435,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418448,12 +418448,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418461,12 +418461,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418474,12 +418474,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418487,12 +418487,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 38, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418500,12 +418500,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 78, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 78
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418513,12 +418513,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = f8, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = f8
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418526,12 +418526,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = f8, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = f8
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418539,12 +418539,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = f8, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = f8
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418552,12 +418552,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = f8, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = f8
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418565,12 +418565,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418578,12 +418578,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418591,12 +418591,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418604,12 +418604,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418617,12 +418617,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418630,12 +418630,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418643,12 +418643,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418656,12 +418656,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418669,12 +418669,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418682,12 +418682,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418695,12 +418695,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418708,12 +418708,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418721,12 +418721,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418734,12 +418734,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418748,7 +418748,7 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
@@ -418765,87 +418765,87 @@
 MS(TLLI-0xc0000000:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TLLI-0xc0000001:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000001) Setting Control TS 5
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000001) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000001) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TLLI-0xc0000002:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000002) Setting Control TS 7
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000002) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000002) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TLLI-0xc0000003:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000003) Setting Control TS 4
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000003) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000003) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TLLI-0xc0000004:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000004) Setting Control TS 6
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000004) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000004) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TLLI-0xc0000005:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc0000005) Setting Control TS 3
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc0000005) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc0000005) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TLLI-0xc0000006:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000006) Setting Control TS 5
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000006) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000006) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 MS(TLLI-0xc0000007:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000007) Setting Control TS 6
+TBF(UL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000007) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000007) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TLLI-0xc0000008:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc0000008) Setting Control TS 4
+TBF(UL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc0000008) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc0000008) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TLLI-0xc0000009:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000009) Setting Control TS 6
+TBF(UL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000009) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000009) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TLLI-0xc000000a:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc000000a) Setting Control TS 4
+TBF(UL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc000000a) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc000000a) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TLLI-0xc000000b:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000000b) Setting Control TS 6
+TBF(UL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000000b) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000000b) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TLLI-0xc000000c:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000000c) Setting Control TS 3
+TBF(UL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000000c) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000000c) Allocated: trx = 0, ul_slots = 38, dl_slots = 00
 MS(TLLI-0xc000000d:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc000000d) Setting Control TS 3
+TBF(UL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc000000d) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc000000d) Allocated: trx = 0, ul_slots = 78, dl_slots = 00
 MS(TLLI-0xc000000e:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc000000e) Setting Control TS 3
+TBF(UL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc000000e) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc000000e) Allocated: trx = 0, ul_slots = f8, dl_slots = 00
 MS(TLLI-0xc000000f:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000000f) Setting Control TS 3
+TBF(UL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000000f) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000000f) Allocated: trx = 0, ul_slots = 88, dl_slots = 00
 MS(TLLI-0xc0000010:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000010) Setting Control TS 3
+TBF(UL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000010) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000010) Allocated: trx = 0, ul_slots = 88, dl_slots = 00
 MS(TLLI-0xc0000011:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
@@ -418861,7 +418861,7 @@
 MS(TLLI-0xc0000000:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418869,7 +418869,7 @@
 MS(TLLI-0xc0000000:TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000){NONE}: Deallocated
@@ -418881,7 +418881,7 @@
 MS(TLLI-0xc0000001:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000001) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000001) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000001) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000001) free
 UL_ASS_TBF(DL:TFI-0-0-1:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418889,7 +418889,7 @@
 MS(TLLI-0xc0000001:TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000001) Setting Control TS 5
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000001) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000001) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000001) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000001){NONE}: Deallocated
@@ -418901,7 +418901,7 @@
 MS(TLLI-0xc0000002:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000002) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000002) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000002) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000002) free
 UL_ASS_TBF(DL:TFI-0-0-2:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418909,7 +418909,7 @@
 MS(TLLI-0xc0000002:TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000002) Setting Control TS 7
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000002) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000002) Allocated: trx = 0, ul_slots = 80, dl_slots = c0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000002) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000002){NONE}: Deallocated
@@ -418921,7 +418921,7 @@
 MS(TLLI-0xc0000003:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000003) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000003) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000003) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000003) free
 UL_ASS_TBF(DL:TFI-0-0-3:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418929,7 +418929,7 @@
 MS(TLLI-0xc0000003:TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000003) Setting Control TS 4
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000003) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000003) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000003) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000003){NONE}: Deallocated
@@ -418941,7 +418941,7 @@
 MS(TLLI-0xc0000004:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000004) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000004) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000004) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000004) free
 UL_ASS_TBF(DL:TFI-0-0-4:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418949,7 +418949,7 @@
 MS(TLLI-0xc0000004:TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000004) Setting Control TS 6
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000004) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000004) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000004) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000004){NONE}: Deallocated
@@ -418961,7 +418961,7 @@
 MS(TLLI-0xc0000005:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000005) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000005) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000005) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc0000005) free
 UL_ASS_TBF(DL:TFI-0-0-5:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418969,7 +418969,7 @@
 MS(TLLI-0xc0000005:TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc0000005) Setting Control TS 3
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc0000005) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc0000005) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000005) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000005){NONE}: Deallocated
@@ -418981,7 +418981,7 @@
 MS(TLLI-0xc0000006:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000006) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000006) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000006) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000006) free
 UL_ASS_TBF(DL:TFI-0-0-6:STATE-NEW:GPRS){NONE}: Deallocated
@@ -418989,7 +418989,7 @@
 MS(TLLI-0xc0000006:TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000006) Setting Control TS 5
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000006) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000006) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000006) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000006){NONE}: Deallocated
@@ -419001,7 +419001,7 @@
 MS(TLLI-0xc0000007:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000007) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000007) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000007) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000007) free
 UL_ASS_TBF(DL:TFI-0-0-7:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419009,7 +419009,7 @@
 MS(TLLI-0xc0000007:TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000007) Setting Control TS 6
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000007) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000007) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000007) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000007){NONE}: Deallocated
@@ -419021,7 +419021,7 @@
 MS(TLLI-0xc0000008:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000008) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000008) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000008) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc0000008) free
 UL_ASS_TBF(DL:TFI-0-0-8:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419029,7 +419029,7 @@
 MS(TLLI-0xc0000008:TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc0000008) Setting Control TS 4
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc0000008) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc0000008) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000008) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000008){NONE}: Deallocated
@@ -419041,7 +419041,7 @@
 MS(TLLI-0xc0000009:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000009) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000009) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000009) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000009) free
 UL_ASS_TBF(DL:TFI-0-0-9:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419049,7 +419049,7 @@
 MS(TLLI-0xc0000009:TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000009) Setting Control TS 6
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000009) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000009) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000009) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000009){NONE}: Deallocated
@@ -419061,7 +419061,7 @@
 MS(TLLI-0xc000000a:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000a) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000a) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000a) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc000000a) free
 UL_ASS_TBF(DL:TFI-0-0-10:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419069,7 +419069,7 @@
 MS(TLLI-0xc000000a:TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc000000a) Setting Control TS 4
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc000000a) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc000000a) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000a) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000a){NONE}: Deallocated
@@ -419081,7 +419081,7 @@
 MS(TLLI-0xc000000b:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000b) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000b) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000b) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000000b) free
 UL_ASS_TBF(DL:TFI-0-0-11:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419089,7 +419089,7 @@
 MS(TLLI-0xc000000b:TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000000b) Setting Control TS 6
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000000b) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000000b) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000b) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000b){NONE}: Deallocated
@@ -419101,7 +419101,7 @@
 MS(TLLI-0xc000000c:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000c) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000c) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000c) Allocated: trx = 0, ul_slots = 38, dl_slots = 00
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000000c) free
 UL_ASS_TBF(DL:TFI-0-0-12:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419109,7 +419109,7 @@
 MS(TLLI-0xc000000c:TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000000c) Setting Control TS 3
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000000c) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000000c) Allocated: trx = 0, ul_slots = 08, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000c) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000c){NONE}: Deallocated
@@ -419121,7 +419121,7 @@
 MS(TLLI-0xc000000d:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000d) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000d) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000d) Allocated: trx = 0, ul_slots = 78, dl_slots = 00
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc000000d) free
 UL_ASS_TBF(DL:TFI-0-0-13:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419129,7 +419129,7 @@
 MS(TLLI-0xc000000d:TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc000000d) Setting Control TS 3
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc000000d) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc000000d) Allocated: trx = 0, ul_slots = 08, dl_slots = 78
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000d) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000d){NONE}: Deallocated
@@ -419141,7 +419141,7 @@
 MS(TLLI-0xc000000e:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000e) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000e) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000e) Allocated: trx = 0, ul_slots = f8, dl_slots = 00
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc000000e) free
 UL_ASS_TBF(DL:TFI-0-0-14:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419149,7 +419149,7 @@
 MS(TLLI-0xc000000e:TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc000000e) Setting Control TS 3
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc000000e) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc000000e) Allocated: trx = 0, ul_slots = 08, dl_slots = f8
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000e) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000e){NONE}: Deallocated
@@ -419161,7 +419161,7 @@
 MS(TLLI-0xc000000f:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000f) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000f) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000f) Allocated: trx = 0, ul_slots = 88, dl_slots = 00
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000000f) free
 UL_ASS_TBF(DL:TFI-0-0-15:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419169,7 +419169,7 @@
 MS(TLLI-0xc000000f:TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000000f) Setting Control TS 3
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000000f) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000000f) Allocated: trx = 0, ul_slots = 08, dl_slots = f8
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000f) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000f){NONE}: Deallocated
@@ -419181,7 +419181,7 @@
 MS(TLLI-0xc0000010:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000010) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000010) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000010) Allocated: trx = 0, ul_slots = 88, dl_slots = 00
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000010) free
 UL_ASS_TBF(DL:TFI-0-0-16:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419189,7 +419189,7 @@
 MS(TLLI-0xc0000010:TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000010) Setting Control TS 3
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000010) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000010) Allocated: trx = 0, ul_slots = 08, dl_slots = f8
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000010) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000010){NONE}: Deallocated
@@ -419198,7 +419198,7 @@
 MS(TLLI-0xc0000011:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000011) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000011) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000011) Allocated: trx = 0, ul_slots = f8, dl_slots = 00
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000011) free
 UL_ASS_TBF(DL:TFI-0-0-17:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419206,7 +419206,7 @@
 MS(TLLI-0xc0000011:TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000011) Setting Control TS 3
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000011) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000011) Allocated: trx = 0, ul_slots = 08, dl_slots = f8
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000011) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000011){NONE}: Deallocated
@@ -419215,7 +419215,7 @@
 MS(TLLI-0xc0000012:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000012) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000012) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000012) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc0000012) free
 UL_ASS_TBF(DL:TFI-0-0-18:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419223,7 +419223,7 @@
 MS(TLLI-0xc0000012:TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc0000012) Setting Control TS 6
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc0000012) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc0000012) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000012) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000012){NONE}: Deallocated
@@ -419232,7 +419232,7 @@
 MS(TLLI-0xc0000013:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000013) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000013) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000013) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000013) free
 UL_ASS_TBF(DL:TFI-0-0-19:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419240,7 +419240,7 @@
 MS(TLLI-0xc0000013:TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000013) Setting Control TS 6
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000013) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000013) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000013) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000013){NONE}: Deallocated
@@ -419249,7 +419249,7 @@
 MS(TLLI-0xc0000014:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000014) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000014) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000014) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000014) free
 UL_ASS_TBF(DL:TFI-0-0-20:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419257,7 +419257,7 @@
 MS(TLLI-0xc0000014:TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000014) Setting Control TS 4
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000014) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000014) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000014) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000014){NONE}: Deallocated
@@ -419266,7 +419266,7 @@
 MS(TLLI-0xc0000015:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000015) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000015) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000015) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc0000015) free
 UL_ASS_TBF(DL:TFI-0-0-21:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419274,7 +419274,7 @@
 MS(TLLI-0xc0000015:TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc0000015) Setting Control TS 6
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc0000015) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc0000015) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000015) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000015){NONE}: Deallocated
@@ -419283,7 +419283,7 @@
 MS(TLLI-0xc0000016:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000016) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000016) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000016) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000016) free
 UL_ASS_TBF(DL:TFI-0-0-22:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419291,7 +419291,7 @@
 MS(TLLI-0xc0000016:TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000016) Setting Control TS 4
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000016) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000016) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000016) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000016){NONE}: Deallocated
@@ -419300,7 +419300,7 @@
 MS(TLLI-0xc0000017:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000017) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000017) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000017) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000017) free
 UL_ASS_TBF(DL:TFI-0-0-23:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419308,7 +419308,7 @@
 MS(TLLI-0xc0000017:TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000017) Setting Control TS 6
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000017) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000017) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000017) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000017){NONE}: Deallocated
@@ -419317,7 +419317,7 @@
 MS(TLLI-0xc0000018:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000018) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000018) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000018) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc0000018) free
 UL_ASS_TBF(DL:TFI-0-0-24:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419325,7 +419325,7 @@
 MS(TLLI-0xc0000018:TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc0000018) Setting Control TS 4
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc0000018) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc0000018) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000018) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000018){NONE}: Deallocated
@@ -419334,7 +419334,7 @@
 MS(TLLI-0xc0000019:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000019) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000019) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000019) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc0000019) free
 UL_ASS_TBF(DL:TFI-0-0-25:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419342,7 +419342,7 @@
 MS(TLLI-0xc0000019:TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc0000019) Setting Control TS 6
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc0000019) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc0000019) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000019) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000019){NONE}: Deallocated
@@ -419351,7 +419351,7 @@
 MS(TLLI-0xc000001a:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001a) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001a) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001a) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc000001a) free
 UL_ASS_TBF(DL:TFI-0-0-26:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419359,7 +419359,7 @@
 MS(TLLI-0xc000001a:TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc000001a) Setting Control TS 4
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc000001a) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc000001a) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001a) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001a){NONE}: Deallocated
@@ -419368,7 +419368,7 @@
 MS(TLLI-0xc000001b:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001b) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001b) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001b) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc000001b) free
 UL_ASS_TBF(DL:TFI-0-0-27:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419376,7 +419376,7 @@
 MS(TLLI-0xc000001b:TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc000001b) Setting Control TS 6
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc000001b) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc000001b) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001b) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001b){NONE}: Deallocated
@@ -419385,7 +419385,7 @@
 MS(TLLI-0xc000001c:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001c) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001c) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001c) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000001c) free
 UL_ASS_TBF(DL:TFI-0-0-28:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419393,7 +419393,7 @@
 MS(TLLI-0xc000001c:TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000001c) Setting Control TS 4
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000001c) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000001c) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001c) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001c){NONE}: Deallocated
@@ -419402,7 +419402,7 @@
 MS(TLLI-0xc000001d:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001d) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001d) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001d) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc000001d) free
 UL_ASS_TBF(DL:TFI-0-0-29:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419410,7 +419410,7 @@
 MS(TLLI-0xc000001d:TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc000001d) Setting Control TS 6
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc000001d) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc000001d) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001d) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001d){NONE}: Deallocated
@@ -419419,7 +419419,7 @@
 MS(TLLI-0xc000001e:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001e) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001e) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001e) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc000001e) free
 UL_ASS_TBF(DL:TFI-0-0-30:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419427,7 +419427,7 @@
 MS(TLLI-0xc000001e:TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc000001e) Setting Control TS 6
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc000001e) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc000001e) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001e) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001e){NONE}: Deallocated
@@ -419436,7 +419436,7 @@
 MS(TLLI-0xc000001f:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001f) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001f) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001f) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000001f) free
 UL_ASS_TBF(DL:TFI-0-0-31:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419444,7 +419444,7 @@
 MS(TLLI-0xc000001f:TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000001f) Setting Control TS 5
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000001f) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000001f) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001f) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001f){NONE}: Deallocated
@@ -419453,7 +419453,7 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
@@ -419473,7 +419473,7 @@
 MS(TLLI-0xc0000000:TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000001) free
@@ -419482,7 +419482,7 @@
 MS(TLLI-0xc0000001:TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000001) Setting Control TS 4
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000001) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000001) Allocated: trx = 0, ul_slots = 10, dl_slots = 18
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000002) free
@@ -419491,7 +419491,7 @@
 MS(TLLI-0xc0000002:TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000002) Setting Control TS 7
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000002) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000002) Allocated: trx = 0, ul_slots = 80, dl_slots = c0
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000003) free
@@ -419500,7 +419500,7 @@
 MS(TLLI-0xc0000003:TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000003) Setting Control TS 4
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000003) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000003) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000004) free
@@ -419509,7 +419509,7 @@
 MS(TLLI-0xc0000004:TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000004) Setting Control TS 3
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000004) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000004) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc0000005) free
@@ -419518,7 +419518,7 @@
 MS(TLLI-0xc0000005:TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc0000005) Setting Control TS 3
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc0000005) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc0000005) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000006) free
@@ -419527,7 +419527,7 @@
 MS(TLLI-0xc0000006:TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000006) Setting Control TS 6
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000006) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000006) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000007) free
@@ -419536,7 +419536,7 @@
 MS(TLLI-0xc0000007:TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000007) Setting Control TS 6
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000007) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000007) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc0000008) free
@@ -419545,7 +419545,7 @@
 MS(TLLI-0xc0000008:TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc0000008) Setting Control TS 4
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc0000008) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc0000008) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000009) free
@@ -419554,7 +419554,7 @@
 MS(TLLI-0xc0000009:TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000009) Setting Control TS 6
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000009) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000009) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc000000a) free
@@ -419563,7 +419563,7 @@
 MS(TLLI-0xc000000a:TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc000000a) Setting Control TS 4
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc000000a) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc000000a) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000000b) free
@@ -419572,7 +419572,7 @@
 MS(TLLI-0xc000000b:TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000000b) Setting Control TS 6
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000000b) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000000b) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000000c) free
@@ -419581,7 +419581,7 @@
 MS(TLLI-0xc000000c:TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000000c) Setting Control TS 3
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000000c) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000000c) Allocated: trx = 0, ul_slots = 08, dl_slots = 38
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc000000d) free
@@ -419590,7 +419590,7 @@
 MS(TLLI-0xc000000d:TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc000000d) Setting Control TS 3
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc000000d) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc000000d) Allocated: trx = 0, ul_slots = 08, dl_slots = 78
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc000000e) free
@@ -419599,7 +419599,7 @@
 MS(TLLI-0xc000000e:TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc000000e) Setting Control TS 3
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc000000e) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc000000e) Allocated: trx = 0, ul_slots = 08, dl_slots = f8
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000000f) free
@@ -419608,7 +419608,7 @@
 MS(TLLI-0xc000000f:TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000000f) Setting Control TS 3
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000000f) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000000f) Allocated: trx = 0, ul_slots = 08, dl_slots = f8
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000010) free
@@ -419617,7 +419617,7 @@
 MS(TLLI-0xc0000010:TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000010) Setting Control TS 3
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000010) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000010) Allocated: trx = 0, ul_slots = 08, dl_slots = f8
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000011) free
@@ -419626,7 +419626,7 @@
 MS(TLLI-0xc0000011:TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000011) Setting Control TS 3
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000011) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000011) Allocated: trx = 0, ul_slots = 08, dl_slots = f8
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc0000012) free
@@ -419635,7 +419635,7 @@
 MS(TLLI-0xc0000012:TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc0000012) Setting Control TS 6
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc0000012) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc0000012) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000013) free
@@ -419644,7 +419644,7 @@
 MS(TLLI-0xc0000013:TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000013) Setting Control TS 6
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000013) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000013) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000014) free
@@ -419653,7 +419653,7 @@
 MS(TLLI-0xc0000014:TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000014) Setting Control TS 4
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000014) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000014) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc0000015) free
@@ -419662,7 +419662,7 @@
 MS(TLLI-0xc0000015:TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc0000015) Setting Control TS 6
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc0000015) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc0000015) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000016) free
@@ -419671,7 +419671,7 @@
 MS(TLLI-0xc0000016:TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000016) Setting Control TS 4
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000016) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000016) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000017) free
@@ -419680,7 +419680,7 @@
 MS(TLLI-0xc0000017:TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000017) Setting Control TS 6
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000017) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000017) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc0000018) free
@@ -419689,7 +419689,7 @@
 MS(TLLI-0xc0000018:TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc0000018) Setting Control TS 4
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc0000018) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc0000018) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc0000019) free
@@ -419698,7 +419698,7 @@
 MS(TLLI-0xc0000019:TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc0000019) Setting Control TS 6
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc0000019) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc0000019) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc000001a) free
@@ -419707,7 +419707,7 @@
 MS(TLLI-0xc000001a:TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc000001a) Setting Control TS 4
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc000001a) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc000001a) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc000001b) free
@@ -419716,7 +419716,7 @@
 MS(TLLI-0xc000001b:TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc000001b) Setting Control TS 6
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc000001b) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc000001b) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000001c) free
@@ -419725,7 +419725,7 @@
 MS(TLLI-0xc000001c:TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000001c) Setting Control TS 4
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000001c) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000001c) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc000001d) free
@@ -419734,7 +419734,7 @@
 MS(TLLI-0xc000001d:TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc000001d) Setting Control TS 6
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc000001d) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc000001d) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc000001e) free
@@ -419743,7 +419743,7 @@
 MS(TLLI-0xc000001e:TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc000001e) Setting Control TS 6
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc000001e) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc000001e) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000001f) free
@@ -419752,7 +419752,7 @@
 MS(TLLI-0xc000001f:TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000001f) Setting Control TS 5
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000001f) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000001f) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-33-0) Allocating DL TBF
@@ -419767,12 +419767,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419780,12 +419780,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 30
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419793,12 +419793,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = c0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419806,12 +419806,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419819,12 +419819,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = c0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419832,12 +419832,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 18, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 18
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419845,12 +419845,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 60
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419858,12 +419858,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419871,12 +419871,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419884,12 +419884,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419897,12 +419897,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419910,12 +419910,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419923,12 +419923,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 38, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419936,12 +419936,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 78, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 78
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419949,12 +419949,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = f8, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = f8
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419962,12 +419962,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = f8, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = f8
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419975,12 +419975,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = f8, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = f8
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -419988,12 +419988,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = f8, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = f8
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420001,12 +420001,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420014,12 +420014,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420027,12 +420027,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420040,12 +420040,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420053,12 +420053,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420066,12 +420066,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420079,12 +420079,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420092,12 +420092,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420105,12 +420105,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420118,12 +420118,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = e0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420131,12 +420131,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 30, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 38
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420144,12 +420144,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f8
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420157,12 +420157,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420170,12 +420170,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 60, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 78
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420184,14 +420184,14 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = c0, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
 No TFI available (suggested TRX: 0).
 [DL] algo B <multi> (suggested TRX: 0): failed to allocate a TFI
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420200,12 +420200,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420214,12 +420214,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420228,12 +420228,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420242,12 +420242,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420256,12 +420256,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420270,12 +420270,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420284,12 +420284,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420298,12 +420298,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420312,12 +420312,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420326,12 +420326,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420340,12 +420340,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420354,12 +420354,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420368,12 +420368,12 @@
 MS(TA-220:MSCLS-46-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-46-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420382,12 +420382,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420396,12 +420396,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420410,12 +420410,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420424,12 +420424,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420438,12 +420438,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420452,12 +420452,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420466,12 +420466,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420480,12 +420480,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420494,12 +420494,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420508,12 +420508,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420522,12 +420522,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420536,12 +420536,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420550,12 +420550,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420564,12 +420564,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420578,12 +420578,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420592,12 +420592,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420606,12 +420606,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420620,12 +420620,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420634,12 +420634,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420648,12 +420648,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420662,12 +420662,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420676,12 +420676,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420690,12 +420690,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420704,12 +420704,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420718,12 +420718,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420732,12 +420732,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420746,12 +420746,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420760,12 +420760,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420774,12 +420774,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420788,12 +420788,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420802,12 +420802,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420816,12 +420816,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420830,12 +420830,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420844,12 +420844,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420858,12 +420858,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420872,12 +420872,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420886,12 +420886,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420900,12 +420900,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420914,12 +420914,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420928,12 +420928,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420942,12 +420942,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420956,12 +420956,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420970,12 +420970,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -420992,87 +420992,87 @@
 MS(TLLI-0xc0000000:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TLLI-0xc0000001:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000001) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000001) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000001) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TLLI-0xc0000002:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000002) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000002) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000002) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TLLI-0xc0000003:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000003) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000003) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000003) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TLLI-0xc0000004:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000004) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000004) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000004) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TLLI-0xc0000005:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000005) Setting Control TS 3
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000005) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000005) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TLLI-0xc0000006:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000006) Setting Control TS 5
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000006) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000006) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TLLI-0xc0000007:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000007) Setting Control TS 6
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000007) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000007) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TLLI-0xc0000008:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000008) Setting Control TS 4
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000008) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000008) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TLLI-0xc0000009:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000009) Setting Control TS 6
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000009) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000009) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TLLI-0xc000000a:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000a) Setting Control TS 4
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000a) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000a) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TLLI-0xc000000b:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc000000b) Setting Control TS 6
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc000000b) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc000000b) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TLLI-0xc000000c:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000c) Setting Control TS 3
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000c) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000000c) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TLLI-0xc000000d:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc000000d) Setting Control TS 3
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc000000d) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc000000d) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TLLI-0xc000000e:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc000000e) Setting Control TS 3
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc000000e) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc000000e) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TLLI-0xc000000f:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000000f) Setting Control TS 3
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000000f) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000000f) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TLLI-0xc0000010:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000010) Setting Control TS 3
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000010) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000010) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TLLI-0xc0000011:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
@@ -421088,7 +421088,7 @@
 MS(TLLI-0xc0000000:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421096,7 +421096,7 @@
 MS(TLLI-0xc0000000:TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000){NONE}: Deallocated
@@ -421108,7 +421108,7 @@
 MS(TLLI-0xc0000001:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000001) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000001) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000001) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000001) free
 UL_ASS_TBF(DL:TFI-0-0-1:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421116,7 +421116,7 @@
 MS(TLLI-0xc0000001:TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000001) Setting Control TS 5
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000001) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000001) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000001) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000001){NONE}: Deallocated
@@ -421128,7 +421128,7 @@
 MS(TLLI-0xc0000002:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000002) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000002) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000002) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000002) free
 UL_ASS_TBF(DL:TFI-0-0-2:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421136,7 +421136,7 @@
 MS(TLLI-0xc0000002:TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000002) Setting Control TS 7
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000002) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000002) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000002) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000002){NONE}: Deallocated
@@ -421148,7 +421148,7 @@
 MS(TLLI-0xc0000003:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000003) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000003) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000003) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000003) free
 UL_ASS_TBF(DL:TFI-0-0-3:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421156,7 +421156,7 @@
 MS(TLLI-0xc0000003:TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000003) Setting Control TS 4
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000003) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000003) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000003) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000003){NONE}: Deallocated
@@ -421168,7 +421168,7 @@
 MS(TLLI-0xc0000004:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000004) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000004) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000004) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000004) free
 UL_ASS_TBF(DL:TFI-0-0-4:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421176,7 +421176,7 @@
 MS(TLLI-0xc0000004:TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000004) Setting Control TS 6
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000004) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000004) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000004) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000004){NONE}: Deallocated
@@ -421188,7 +421188,7 @@
 MS(TLLI-0xc0000005:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000005) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000005) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000005) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc0000005) free
 UL_ASS_TBF(DL:TFI-0-0-5:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421196,7 +421196,7 @@
 MS(TLLI-0xc0000005:TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000005) Setting Control TS 3
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000005) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000005) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000005) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000005){NONE}: Deallocated
@@ -421208,7 +421208,7 @@
 MS(TLLI-0xc0000006:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000006) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000006) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000006) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000006) free
 UL_ASS_TBF(DL:TFI-0-0-6:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421216,7 +421216,7 @@
 MS(TLLI-0xc0000006:TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000006) Setting Control TS 5
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000006) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000006) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000006) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000006){NONE}: Deallocated
@@ -421228,7 +421228,7 @@
 MS(TLLI-0xc0000007:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000007) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000007) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000007) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000007) free
 UL_ASS_TBF(DL:TFI-0-0-7:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421236,7 +421236,7 @@
 MS(TLLI-0xc0000007:TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000007) Setting Control TS 6
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000007) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000007) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000007) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000007){NONE}: Deallocated
@@ -421248,7 +421248,7 @@
 MS(TLLI-0xc0000008:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000008) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000008) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000008) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc0000008) free
 UL_ASS_TBF(DL:TFI-0-0-8:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421256,7 +421256,7 @@
 MS(TLLI-0xc0000008:TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000008) Setting Control TS 4
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000008) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000008) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000008) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000008){NONE}: Deallocated
@@ -421268,7 +421268,7 @@
 MS(TLLI-0xc0000009:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000009) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000009) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000009) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000009) free
 UL_ASS_TBF(DL:TFI-0-0-9:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421276,7 +421276,7 @@
 MS(TLLI-0xc0000009:TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000009) Setting Control TS 6
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000009) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000009) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000009) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000009){NONE}: Deallocated
@@ -421288,7 +421288,7 @@
 MS(TLLI-0xc000000a:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000a) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000a) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000a) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc000000a) free
 UL_ASS_TBF(DL:TFI-0-0-10:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421296,7 +421296,7 @@
 MS(TLLI-0xc000000a:TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000000a) Setting Control TS 4
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000000a) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000000a) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000a) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000a){NONE}: Deallocated
@@ -421308,7 +421308,7 @@
 MS(TLLI-0xc000000b:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000b) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000b) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000b) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000000b) free
 UL_ASS_TBF(DL:TFI-0-0-11:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421316,7 +421316,7 @@
 MS(TLLI-0xc000000b:TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc000000b) Setting Control TS 6
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc000000b) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc000000b) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000b) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000b){NONE}: Deallocated
@@ -421328,7 +421328,7 @@
 MS(TLLI-0xc000000c:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000c) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000c) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000c) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000000c) free
 UL_ASS_TBF(DL:TFI-0-0-12:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421336,7 +421336,7 @@
 MS(TLLI-0xc000000c:TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000000c) Setting Control TS 3
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000000c) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000000c) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000c) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000c){NONE}: Deallocated
@@ -421348,7 +421348,7 @@
 MS(TLLI-0xc000000d:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000d) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000d) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000d) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc000000d) free
 UL_ASS_TBF(DL:TFI-0-0-13:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421356,7 +421356,7 @@
 MS(TLLI-0xc000000d:TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000000d) Setting Control TS 3
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000000d) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000000d) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000d) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000d){NONE}: Deallocated
@@ -421368,7 +421368,7 @@
 MS(TLLI-0xc000000e:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000e) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000e) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000e) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc000000e) free
 UL_ASS_TBF(DL:TFI-0-0-14:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421376,7 +421376,7 @@
 MS(TLLI-0xc000000e:TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc000000e) Setting Control TS 3
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc000000e) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc000000e) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000e) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000e){NONE}: Deallocated
@@ -421387,7 +421387,7 @@
 MS(TLLI-0xc000000f:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000f) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000f) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000f) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc000000f) free
 UL_ASS_TBF(DL:TFI-0-0-15:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421395,7 +421395,7 @@
 MS(TLLI-0xc000000f:TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000000f) Setting Control TS 3
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000000f) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000000f) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000f) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000000f){NONE}: Deallocated
@@ -421406,7 +421406,7 @@
 MS(TLLI-0xc0000010:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000010) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000010) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000010) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000010) free
 UL_ASS_TBF(DL:TFI-0-0-16:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421414,7 +421414,7 @@
 MS(TLLI-0xc0000010:TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000010) Setting Control TS 3
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000010) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000010) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000010) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000010){NONE}: Deallocated
@@ -421422,7 +421422,7 @@
 MS(TLLI-0xc0000011:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000011) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000011) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000011) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000011) free
 UL_ASS_TBF(DL:TFI-0-0-17:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421430,7 +421430,7 @@
 MS(TLLI-0xc0000011:TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000011) Setting Control TS 3
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000011) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000011) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000011) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000011){NONE}: Deallocated
@@ -421438,7 +421438,7 @@
 MS(TLLI-0xc0000012:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000012) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000012) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000012) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc0000012) free
 UL_ASS_TBF(DL:TFI-0-0-18:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421446,7 +421446,7 @@
 MS(TLLI-0xc0000012:TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000012) Setting Control TS 6
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000012) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000012) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000012) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000012){NONE}: Deallocated
@@ -421454,7 +421454,7 @@
 MS(TLLI-0xc0000013:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000013) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000013) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000013) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000013) free
 UL_ASS_TBF(DL:TFI-0-0-19:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421462,7 +421462,7 @@
 MS(TLLI-0xc0000013:TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000013) Setting Control TS 6
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000013) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000013) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000013) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000013){NONE}: Deallocated
@@ -421470,7 +421470,7 @@
 MS(TLLI-0xc0000014:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000014) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000014) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000014) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000014) free
 UL_ASS_TBF(DL:TFI-0-0-20:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421478,7 +421478,7 @@
 MS(TLLI-0xc0000014:TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000014) Setting Control TS 4
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000014) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000014) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000014) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000014){NONE}: Deallocated
@@ -421486,7 +421486,7 @@
 MS(TLLI-0xc0000015:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000015) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000015) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000015) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc0000015) free
 UL_ASS_TBF(DL:TFI-0-0-21:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421494,7 +421494,7 @@
 MS(TLLI-0xc0000015:TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000015) Setting Control TS 6
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000015) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000015) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000015) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000015){NONE}: Deallocated
@@ -421502,7 +421502,7 @@
 MS(TLLI-0xc0000016:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000016) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000016) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000016) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000016) free
 UL_ASS_TBF(DL:TFI-0-0-22:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421510,7 +421510,7 @@
 MS(TLLI-0xc0000016:TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc0000016) Setting Control TS 4
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc0000016) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc0000016) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000016) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000016){NONE}: Deallocated
@@ -421518,7 +421518,7 @@
 MS(TLLI-0xc0000017:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000017) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000017) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000017) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000017) free
 UL_ASS_TBF(DL:TFI-0-0-23:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421526,7 +421526,7 @@
 MS(TLLI-0xc0000017:TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000017) Setting Control TS 6
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000017) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000017) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000017) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000017){NONE}: Deallocated
@@ -421534,7 +421534,7 @@
 MS(TLLI-0xc0000018:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000018) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000018) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000018) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc0000018) free
 UL_ASS_TBF(DL:TFI-0-0-24:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421542,7 +421542,7 @@
 MS(TLLI-0xc0000018:TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000018) Setting Control TS 4
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000018) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000018) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000018) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000018){NONE}: Deallocated
@@ -421550,7 +421550,7 @@
 MS(TLLI-0xc0000019:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000019) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000019) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000019) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc0000019) free
 UL_ASS_TBF(DL:TFI-0-0-25:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421558,7 +421558,7 @@
 MS(TLLI-0xc0000019:TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc0000019) Setting Control TS 6
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc0000019) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc0000019) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000019) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000019){NONE}: Deallocated
@@ -421566,7 +421566,7 @@
 MS(TLLI-0xc000001a:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001a) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001a) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001a) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc000001a) free
 UL_ASS_TBF(DL:TFI-0-0-26:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421574,7 +421574,7 @@
 MS(TLLI-0xc000001a:TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000001a) Setting Control TS 4
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000001a) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000001a) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001a) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001a){NONE}: Deallocated
@@ -421582,7 +421582,7 @@
 MS(TLLI-0xc000001b:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001b) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001b) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001b) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc000001b) free
 UL_ASS_TBF(DL:TFI-0-0-27:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421590,7 +421590,7 @@
 MS(TLLI-0xc000001b:TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc000001b) Setting Control TS 6
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc000001b) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc000001b) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001b) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001b){NONE}: Deallocated
@@ -421598,7 +421598,7 @@
 MS(TLLI-0xc000001c:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001c) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001c) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001c) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000001c) free
 UL_ASS_TBF(DL:TFI-0-0-28:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421606,7 +421606,7 @@
 MS(TLLI-0xc000001c:TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc000001c) Setting Control TS 4
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc000001c) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc000001c) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001c) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001c){NONE}: Deallocated
@@ -421614,7 +421614,7 @@
 MS(TLLI-0xc000001d:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001d) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001d) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001d) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc000001d) free
 UL_ASS_TBF(DL:TFI-0-0-29:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421622,7 +421622,7 @@
 MS(TLLI-0xc000001d:TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc000001d) Setting Control TS 6
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc000001d) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc000001d) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001d) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001d){NONE}: Deallocated
@@ -421630,7 +421630,7 @@
 MS(TLLI-0xc000001e:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001e) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001e) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001e) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc000001e) free
 UL_ASS_TBF(DL:TFI-0-0-30:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421638,7 +421638,7 @@
 MS(TLLI-0xc000001e:TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000001e) Setting Control TS 6
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000001e) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000001e) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001e) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001e){NONE}: Deallocated
@@ -421646,7 +421646,7 @@
 MS(TLLI-0xc000001f:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001f) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001f) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001f) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000001f) free
 UL_ASS_TBF(DL:TFI-0-0-31:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421654,7 +421654,7 @@
 MS(TLLI-0xc000001f:TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc000001f) Setting Control TS 5
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc000001f) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc000001f) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001f) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000001f){NONE}: Deallocated
@@ -421662,7 +421662,7 @@
 MS(TLLI-0xc0000020:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000020) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000020) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000020) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000020) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421670,7 +421670,7 @@
 MS(TLLI-0xc0000020:TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000020) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000020) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000020) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000020) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000020){NONE}: Deallocated
@@ -421678,7 +421678,7 @@
 MS(TLLI-0xc0000021:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000021) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000021) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000021) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000021) free
 UL_ASS_TBF(DL:TFI-0-0-1:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421686,7 +421686,7 @@
 MS(TLLI-0xc0000021:TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000021) Setting Control TS 3
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000021) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000021) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000021) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000021){NONE}: Deallocated
@@ -421694,7 +421694,7 @@
 MS(TLLI-0xc0000022:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000022) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000022) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000022) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000022) free
 UL_ASS_TBF(DL:TFI-0-0-2:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421702,7 +421702,7 @@
 MS(TLLI-0xc0000022:TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000022) Setting Control TS 3
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000022) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000022) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000022) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000022){NONE}: Deallocated
@@ -421710,7 +421710,7 @@
 MS(TLLI-0xc0000023:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000023) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000023) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421718,7 +421718,7 @@
 MS(TLLI-0xc0000023:TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000023) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000023) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000023){NONE}: Deallocated
@@ -421726,7 +421726,7 @@
 MS(TLLI-0xc0000024:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000024) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000024) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000024) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000024) free
 UL_ASS_TBF(DL:TFI-0-0-4:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421734,7 +421734,7 @@
 MS(TLLI-0xc0000024:TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000024) Setting Control TS 3
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000024) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000024) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000024) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000024){NONE}: Deallocated
@@ -421742,7 +421742,7 @@
 MS(TLLI-0xc0000025:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000025) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000025) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000025) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000025) free
 UL_ASS_TBF(DL:TFI-0-0-1:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421750,7 +421750,7 @@
 MS(TLLI-0xc0000025:TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000025) Setting Control TS 7
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000025) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000025) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000025) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000025){NONE}: Deallocated
@@ -421758,7 +421758,7 @@
 MS(TLLI-0xc0000026:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000026) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000026) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000026) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000026) free
 UL_ASS_TBF(DL:TFI-0-0-6:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421766,7 +421766,7 @@
 MS(TLLI-0xc0000026:TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000026) Setting Control TS 3
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000026) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000026) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000026) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000026){NONE}: Deallocated
@@ -421774,7 +421774,7 @@
 MS(TLLI-0xc0000027:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000027) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000027) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000027) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000027) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421782,7 +421782,7 @@
 MS(TLLI-0xc0000027:TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000027) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000027) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000027) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000027) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000027){NONE}: Deallocated
@@ -421790,7 +421790,7 @@
 MS(TLLI-0xc0000028:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000028) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000028) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000028) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000028) free
 UL_ASS_TBF(DL:TFI-0-0-3:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421798,7 +421798,7 @@
 MS(TLLI-0xc0000028:TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000028) Setting Control TS 7
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000028) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000028) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000028) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000028){NONE}: Deallocated
@@ -421806,7 +421806,7 @@
 MS(TLLI-0xc0000029:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000029) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000029) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000029) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000029) free
 UL_ASS_TBF(DL:TFI-0-0-7:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421814,7 +421814,7 @@
 MS(TLLI-0xc0000029:TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000029) Setting Control TS 3
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000029) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000029) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000029) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000029){NONE}: Deallocated
@@ -421822,7 +421822,7 @@
 MS(TLLI-0xc000002a:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002a) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002a) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002a) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000002a) free
 UL_ASS_TBF(DL:TFI-0-0-2:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421830,7 +421830,7 @@
 MS(TLLI-0xc000002a:TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000002a) Setting Control TS 4
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000002a) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000002a) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002a) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002a){NONE}: Deallocated
@@ -421838,7 +421838,7 @@
 MS(TLLI-0xc000002b:TA-220:MSCLS-44-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002b) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002b) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002b) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000002b) free
 UL_ASS_TBF(DL:TFI-0-0-5:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421846,7 +421846,7 @@
 MS(TLLI-0xc000002b:TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc000002b) Setting Control TS 7
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc000002b) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc000002b) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002b) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002b){NONE}: Deallocated
@@ -421854,7 +421854,7 @@
 MS(TLLI-0xc000002c:TA-220:MSCLS-45-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002c) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002c) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002c) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000002c) free
 UL_ASS_TBF(DL:TFI-0-0-9:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421862,7 +421862,7 @@
 MS(TLLI-0xc000002c:TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000002c) Setting Control TS 3
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000002c) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000002c) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002c) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002c){NONE}: Deallocated
@@ -421870,7 +421870,7 @@
 MS(TLLI-0xc000002d:TA-220:MSCLS-46-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002d) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002d) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002d) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc000002d) free
 UL_ASS_TBF(DL:TFI-0-0-4:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421878,7 +421878,7 @@
 MS(TLLI-0xc000002d:TA-220:MSCLS-46-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc000002d) Setting Control TS 4
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc000002d) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc000002d) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002d) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002d){NONE}: Deallocated
@@ -421886,7 +421886,7 @@
 MS(TLLI-0xc000002e:TA-220:MSCLS-1-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002e) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002e) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002e) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc000002e) free
 UL_ASS_TBF(DL:TFI-0-0-6:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421894,7 +421894,7 @@
 MS(TLLI-0xc000002e:TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000002e) Setting Control TS 7
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000002e) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000002e) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002e) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002e){NONE}: Deallocated
@@ -421902,7 +421902,7 @@
 MS(TLLI-0xc000002f:TA-220:MSCLS-2-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002f) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002f) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002f) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000002f) free
 UL_ASS_TBF(DL:TFI-0-0-11:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421910,7 +421910,7 @@
 MS(TLLI-0xc000002f:TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000002f) Setting Control TS 3
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000002f) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000002f) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002f) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000002f){NONE}: Deallocated
@@ -421918,7 +421918,7 @@
 MS(TLLI-0xc0000030:TA-220:MSCLS-3-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000030) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000030) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000030) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000030) free
 UL_ASS_TBF(DL:TFI-0-0-1:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421926,7 +421926,7 @@
 MS(TLLI-0xc0000030:TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000030) Setting Control TS 6
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000030) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000030) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000030) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000030){NONE}: Deallocated
@@ -421934,7 +421934,7 @@
 MS(TLLI-0xc0000031:TA-220:MSCLS-4-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000031) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000031) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000031) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000031) free
 UL_ASS_TBF(DL:TFI-0-0-6:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421942,7 +421942,7 @@
 MS(TLLI-0xc0000031:TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000031) Setting Control TS 4
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000031) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000031) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000031) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000031){NONE}: Deallocated
@@ -421950,7 +421950,7 @@
 MS(TLLI-0xc0000032:TA-220:MSCLS-5-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000032) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000032) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000032) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc0000032) free
 UL_ASS_TBF(DL:TFI-0-0-8:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421958,7 +421958,7 @@
 MS(TLLI-0xc0000032:TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000032) Setting Control TS 7
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000032) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000032) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000032) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000032){NONE}: Deallocated
@@ -421966,7 +421966,7 @@
 MS(TLLI-0xc0000033:TA-220:MSCLS-6-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000033) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000033) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000033) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc0000033) free
 UL_ASS_TBF(DL:TFI-0-0-18:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421974,7 +421974,7 @@
 MS(TLLI-0xc0000033:TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc0000033) Setting Control TS 3
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc0000033) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc0000033) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000033) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000033){NONE}: Deallocated
@@ -421982,7 +421982,7 @@
 MS(TLLI-0xc0000034:TA-220:MSCLS-7-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000034) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000034) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000034) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000034) free
 UL_ASS_TBF(DL:TFI-0-0-3:STATE-NEW:GPRS){NONE}: Deallocated
@@ -421990,7 +421990,7 @@
 MS(TLLI-0xc0000034:TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000034) Setting Control TS 6
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000034) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000034) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000034) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000034){NONE}: Deallocated
@@ -421998,7 +421998,7 @@
 MS(TLLI-0xc0000035:TA-220:MSCLS-8-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000035) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000035) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000035) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000035) free
 UL_ASS_TBF(DL:TFI-0-0-9:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422006,7 +422006,7 @@
 MS(TLLI-0xc0000035:TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000035) Setting Control TS 4
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000035) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000035) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000035) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000035){NONE}: Deallocated
@@ -422014,7 +422014,7 @@
 MS(TLLI-0xc0000036:TA-220:MSCLS-9-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000036) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000036) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000036) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000036) free
 UL_ASS_TBF(DL:TFI-0-0-10:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422022,7 +422022,7 @@
 MS(TLLI-0xc0000036:TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000036) Setting Control TS 7
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000036) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000036) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000036) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000036){NONE}: Deallocated
@@ -422030,7 +422030,7 @@
 MS(TLLI-0xc0000037:TA-220:MSCLS-10-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000037) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000037) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000037) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000037) free
 UL_ASS_TBF(DL:TFI-0-0-19:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422038,7 +422038,7 @@
 MS(TLLI-0xc0000037:TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000037) Setting Control TS 3
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000037) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000037) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000037) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000037){NONE}: Deallocated
@@ -422046,7 +422046,7 @@
 MS(TLLI-0xc0000038:TA-220:MSCLS-11-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000038) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000038) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000038) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc0000038) free
 UL_ASS_TBF(DL:TFI-0-0-5:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422054,7 +422054,7 @@
 MS(TLLI-0xc0000038:TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc0000038) Setting Control TS 6
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc0000038) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc0000038) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000038) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000038){NONE}: Deallocated
@@ -422062,7 +422062,7 @@
 MS(TLLI-0xc0000039:TA-220:MSCLS-12-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000039) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000039) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000039) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000039) free
 UL_ASS_TBF(DL:TFI-0-0-11:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422070,7 +422070,7 @@
 MS(TLLI-0xc0000039:TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000039) Setting Control TS 4
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000039) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000039) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000039) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000039){NONE}: Deallocated
@@ -422078,7 +422078,7 @@
 MS(TLLI-0xc000003a:TA-220:MSCLS-13-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003a) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003a) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003a) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000003a) free
 UL_ASS_TBF(DL:TFI-0-0-12:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422086,7 +422086,7 @@
 MS(TLLI-0xc000003a:TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000003a) Setting Control TS 7
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000003a) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000003a) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003a) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003a){NONE}: Deallocated
@@ -422094,7 +422094,7 @@
 MS(TLLI-0xc000003b:TA-220:MSCLS-14-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003b) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003b) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003b) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000003b) free
 UL_ASS_TBF(DL:TFI-0-0-21:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422102,7 +422102,7 @@
 MS(TLLI-0xc000003b:TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc000003b) Setting Control TS 3
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc000003b) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc000003b) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003b) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003b){NONE}: Deallocated
@@ -422110,7 +422110,7 @@
 MS(TLLI-0xc000003c:TA-220:MSCLS-15-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003c) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003c) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003c) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000003c) free
 UL_ASS_TBF(DL:TFI-0-0-8:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422118,7 +422118,7 @@
 MS(TLLI-0xc000003c:TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000003c) Setting Control TS 6
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000003c) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000003c) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003c) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003c){NONE}: Deallocated
@@ -422126,7 +422126,7 @@
 MS(TLLI-0xc000003d:TA-220:MSCLS-16-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003d) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003d) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003d) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003d) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422134,7 +422134,7 @@
 MS(TLLI-0xc000003d:TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003d) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003d) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003d) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003d) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003d){NONE}: Deallocated
@@ -422142,7 +422142,7 @@
 MS(TLLI-0xc000003e:TA-220:MSCLS-17-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003e) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003e) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003e) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000003e) free
 UL_ASS_TBF(DL:TFI-0-0-18:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422150,7 +422150,7 @@
 MS(TLLI-0xc000003e:TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc000003e) Setting Control TS 4
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc000003e) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc000003e) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003e) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003e){NONE}: Deallocated
@@ -422158,7 +422158,7 @@
 MS(TLLI-0xc000003f:TA-220:MSCLS-18-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003f) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003f) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003f) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc000003f) free
 UL_ASS_TBF(DL:TFI-0-0-13:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422166,7 +422166,7 @@
 MS(TLLI-0xc000003f:TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000003f) Setting Control TS 7
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000003f) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000003f) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003f) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003f){NONE}: Deallocated
@@ -422174,7 +422174,7 @@
 MS(TLLI-0xc0000040:TA-220:MSCLS-19-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000040) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000040) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000040) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000040) free
 UL_ASS_TBF(DL:TFI-0-0-23:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422182,7 +422182,7 @@
 MS(TLLI-0xc0000040:TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc0000040) Setting Control TS 3
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc0000040) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc0000040) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000040) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000040){NONE}: Deallocated
@@ -422190,7 +422190,7 @@
 MS(TLLI-0xc0000041:TA-220:MSCLS-20-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000041) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000041) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000041) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000041) free
 UL_ASS_TBF(DL:TFI-0-0-10:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422198,7 +422198,7 @@
 MS(TLLI-0xc0000041:TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000041) Setting Control TS 6
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000041) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000041) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000041) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000041){NONE}: Deallocated
@@ -422206,7 +422206,7 @@
 MS(TLLI-0xc0000042:TA-220:MSCLS-21-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000042) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000042) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000042) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000042) free
 UL_ASS_TBF(DL:TFI-0-0-2:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422214,7 +422214,7 @@
 MS(TLLI-0xc0000042:TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000042) Setting Control TS 5
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000042) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000042) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000042) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000042){NONE}: Deallocated
@@ -422222,7 +422222,7 @@
 MS(TLLI-0xc0000043:TA-220:MSCLS-22-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000043) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000043) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000043) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000043) free
 UL_ASS_TBF(DL:TFI-0-0-19:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422230,7 +422230,7 @@
 MS(TLLI-0xc0000043:TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc0000043) Setting Control TS 4
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc0000043) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc0000043) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000043) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000043){NONE}: Deallocated
@@ -422238,7 +422238,7 @@
 MS(TLLI-0xc0000044:TA-220:MSCLS-23-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000044) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000044) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000044) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000044) free
 UL_ASS_TBF(DL:TFI-0-0-20:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422246,7 +422246,7 @@
 MS(TLLI-0xc0000044:TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000044) Setting Control TS 7
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000044) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000044) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000044) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000044){NONE}: Deallocated
@@ -422254,7 +422254,7 @@
 MS(TLLI-0xc0000045:TA-220:MSCLS-24-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000045) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000045) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000045) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc0000045) free
 UL_ASS_TBF(DL:TFI-0-0-25:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422262,7 +422262,7 @@
 MS(TLLI-0xc0000045:TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000045) Setting Control TS 3
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000045) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000045) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000045) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000045){NONE}: Deallocated
@@ -422270,7 +422270,7 @@
 MS(TLLI-0xc0000046:TA-220:MSCLS-25-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000046) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000046) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000046) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc0000046) free
 UL_ASS_TBF(DL:TFI-0-0-12:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422278,7 +422278,7 @@
 MS(TLLI-0xc0000046:TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc0000046) Setting Control TS 6
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc0000046) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc0000046) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000046) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000046){NONE}: Deallocated
@@ -422286,7 +422286,7 @@
 MS(TLLI-0xc0000047:TA-220:MSCLS-26-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000047) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000047) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000047) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000047) free
 UL_ASS_TBF(DL:TFI-0-0-4:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422294,7 +422294,7 @@
 MS(TLLI-0xc0000047:TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000047) Setting Control TS 5
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000047) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000047) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000047) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000047){NONE}: Deallocated
@@ -422302,7 +422302,7 @@
 MS(TLLI-0xc0000048:TA-220:MSCLS-27-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000048) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000048) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000048) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc0000048) free
 UL_ASS_TBF(DL:TFI-0-0-21:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422310,7 +422310,7 @@
 MS(TLLI-0xc0000048:TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000048) Setting Control TS 4
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000048) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000048) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000048) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000048){NONE}: Deallocated
@@ -422318,7 +422318,7 @@
 MS(TLLI-0xc0000049:TA-220:MSCLS-28-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000049) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000049) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000049) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000049) free
 UL_ASS_TBF(DL:TFI-0-0-22:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422326,7 +422326,7 @@
 MS(TLLI-0xc0000049:TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000049) Setting Control TS 7
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000049) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000049) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000049) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000049){NONE}: Deallocated
@@ -422334,7 +422334,7 @@
 MS(TLLI-0xc000004a:TA-220:MSCLS-29-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004a) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004a) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004a) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc000004a) free
 UL_ASS_TBF(DL:TFI-0-0-27:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422342,7 +422342,7 @@
 MS(TLLI-0xc000004a:TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc000004a) Setting Control TS 3
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc000004a) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc000004a) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004a) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004a){NONE}: Deallocated
@@ -422350,7 +422350,7 @@
 MS(TLLI-0xc000004b:TA-220:MSCLS-30-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004b) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004b) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004b) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc000004b) free
 UL_ASS_TBF(DL:TFI-0-0-20:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422358,7 +422358,7 @@
 MS(TLLI-0xc000004b:TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc000004b) Setting Control TS 6
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc000004b) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc000004b) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004b) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004b){NONE}: Deallocated
@@ -422366,7 +422366,7 @@
 MS(TLLI-0xc000004c:TA-220:MSCLS-31-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004c) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004c) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004c) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000004c) free
 UL_ASS_TBF(DL:TFI-0-0-5:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422374,7 +422374,7 @@
 MS(TLLI-0xc000004c:TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000004c) Setting Control TS 5
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000004c) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000004c) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004c) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004c){NONE}: Deallocated
@@ -422382,7 +422382,7 @@
 MS(TLLI-0xc000004d:TA-220:MSCLS-32-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004d) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004d) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004d) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc000004d) free
 UL_ASS_TBF(DL:TFI-0-0-23:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422390,7 +422390,7 @@
 MS(TLLI-0xc000004d:TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc000004d) Setting Control TS 4
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc000004d) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc000004d) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004d) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004d){NONE}: Deallocated
@@ -422398,7 +422398,7 @@
 MS(TLLI-0xc000004e:TA-220:MSCLS-33-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004e) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004e) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004e) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc000004e) free
 UL_ASS_TBF(DL:TFI-0-0-24:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422406,7 +422406,7 @@
 MS(TLLI-0xc000004e:TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000004e) Setting Control TS 7
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000004e) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000004e) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004e) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004e){NONE}: Deallocated
@@ -422414,7 +422414,7 @@
 MS(TLLI-0xc000004f:TA-220:MSCLS-34-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004f) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004f) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004f) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc000004f) free
 UL_ASS_TBF(DL:TFI-0-0-30:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422422,7 +422422,7 @@
 MS(TLLI-0xc000004f:TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000004f) Setting Control TS 3
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000004f) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000004f) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004f) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000004f){NONE}: Deallocated
@@ -422430,7 +422430,7 @@
 MS(TLLI-0xc0000050:TA-220:MSCLS-35-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000050) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000050) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000050) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000050) free
 UL_ASS_TBF(DL:TFI-0-0-22:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422438,7 +422438,7 @@
 MS(TLLI-0xc0000050:TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000050) Setting Control TS 6
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000050) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000050) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000050) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000050){NONE}: Deallocated
@@ -422446,7 +422446,7 @@
 MS(TLLI-0xc0000051:TA-220:MSCLS-36-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000051) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000051) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000051) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc0000051) free
 UL_ASS_TBF(DL:TFI-0-0-25:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422454,7 +422454,7 @@
 MS(TLLI-0xc0000051:TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc0000051) Setting Control TS 4
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc0000051) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc0000051) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000051) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000051){NONE}: Deallocated
@@ -422462,7 +422462,7 @@
 MS(TLLI-0xc0000052:TA-220:MSCLS-37-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000052) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000052) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000052) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000052) free
 UL_ASS_TBF(DL:TFI-0-0-26:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422470,7 +422470,7 @@
 MS(TLLI-0xc0000052:TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000052) Setting Control TS 7
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000052) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000052) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000052) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000052){NONE}: Deallocated
@@ -422478,7 +422478,7 @@
 MS(TLLI-0xc0000053:TA-220:MSCLS-38-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000053) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000053) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000053) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc0000053) free
 UL_ASS_TBF(DL:TFI-0-0-24:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422486,7 +422486,7 @@
 MS(TLLI-0xc0000053:TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc0000053) Setting Control TS 6
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc0000053) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc0000053) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000053) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000053){NONE}: Deallocated
@@ -422494,7 +422494,7 @@
 MS(TLLI-0xc0000054:TA-220:MSCLS-39-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000054) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000054) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000054) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc0000054) free
 UL_ASS_TBF(DL:TFI-0-0-27:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422502,7 +422502,7 @@
 MS(TLLI-0xc0000054:TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000054) Setting Control TS 4
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000054) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000054) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000054) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000054){NONE}: Deallocated
@@ -422510,7 +422510,7 @@
 MS(TLLI-0xc0000055:TA-220:MSCLS-40-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000055) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000055) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000055) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc0000055) free
 UL_ASS_TBF(DL:TFI-0-0-28:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422518,7 +422518,7 @@
 MS(TLLI-0xc0000055:TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000055) Setting Control TS 7
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000055) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000055) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000055) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000055){NONE}: Deallocated
@@ -422526,7 +422526,7 @@
 MS(TLLI-0xc0000056:TA-220:MSCLS-41-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000056) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000056) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000056) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000056) free
 UL_ASS_TBF(DL:TFI-0-0-26:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422534,7 +422534,7 @@
 MS(TLLI-0xc0000056:TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000056) Setting Control TS 6
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000056) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000056) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000056) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000056){NONE}: Deallocated
@@ -422542,7 +422542,7 @@
 MS(TLLI-0xc0000057:TA-220:MSCLS-42-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000057) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000057) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000057) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc0000057) free
 UL_ASS_TBF(DL:TFI-0-0-31:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422550,7 +422550,7 @@
 MS(TLLI-0xc0000057:TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc0000057) Setting Control TS 7
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc0000057) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc0000057) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000057) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000057){NONE}: Deallocated
@@ -422558,7 +422558,7 @@
 MS(TLLI-0xc0000058:TA-220:MSCLS-43-0:DL) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000058) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000058) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000058) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc0000058) free
 UL_ASS_TBF(DL:TFI-0-0-28:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422566,7 +422566,7 @@
 MS(TLLI-0xc0000058:TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000058) Setting Control TS 6
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000058) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000058) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000058) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000058){NONE}: Deallocated
@@ -422574,12 +422574,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422587,12 +422587,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422600,12 +422600,12 @@
 MS(TA-220:MSCLS-46-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-46-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422613,12 +422613,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422626,12 +422626,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422639,12 +422639,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422652,12 +422652,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422665,12 +422665,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422678,12 +422678,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422691,12 +422691,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422704,12 +422704,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422717,12 +422717,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422730,12 +422730,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422743,12 +422743,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422756,12 +422756,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422769,12 +422769,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422782,12 +422782,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422795,12 +422795,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422808,12 +422808,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422821,12 +422821,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422834,12 +422834,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422847,12 +422847,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422860,12 +422860,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422873,12 +422873,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422886,12 +422886,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422899,12 +422899,12 @@
 MS(TA-220:MSCLS-23-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-23-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422912,12 +422912,12 @@
 MS(TA-220:MSCLS-24-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-24-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422925,12 +422925,12 @@
 MS(TA-220:MSCLS-25-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-25-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422938,12 +422938,12 @@
 MS(TA-220:MSCLS-26-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-26-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422951,12 +422951,12 @@
 MS(TA-220:MSCLS-27-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-27-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422964,12 +422964,12 @@
 MS(TA-220:MSCLS-28-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-28-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422977,12 +422977,12 @@
 MS(TA-220:MSCLS-29-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-29-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -422990,12 +422990,12 @@
 MS(TA-220:MSCLS-30-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-30-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423003,12 +423003,12 @@
 MS(TA-220:MSCLS-31-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-31-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423016,12 +423016,12 @@
 MS(TA-220:MSCLS-32-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-32-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423029,12 +423029,12 @@
 MS(TA-220:MSCLS-33-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-33-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423042,12 +423042,12 @@
 MS(TA-220:MSCLS-34-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-34-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423055,12 +423055,12 @@
 MS(TA-220:MSCLS-35-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-35-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423068,12 +423068,12 @@
 MS(TA-220:MSCLS-36-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-36-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423081,12 +423081,12 @@
 MS(TA-220:MSCLS-37-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-37-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423094,12 +423094,12 @@
 MS(TA-220:MSCLS-38-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-38-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423107,12 +423107,12 @@
 MS(TA-220:MSCLS-39-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-39-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423120,12 +423120,12 @@
 MS(TA-220:MSCLS-40-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-40-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423133,12 +423133,12 @@
 MS(TA-220:MSCLS-41-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-41-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423146,12 +423146,12 @@
 MS(TA-220:MSCLS-42-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-42-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423159,12 +423159,12 @@
 MS(TA-220:MSCLS-43-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-43-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423172,12 +423172,12 @@
 MS(TA-220:MSCLS-44-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-44-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423185,12 +423185,12 @@
 MS(TA-220:MSCLS-45-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-45-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423198,12 +423198,12 @@
 MS(TA-220:MSCLS-46-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-46-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423211,12 +423211,12 @@
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-1-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423224,12 +423224,12 @@
 MS(TA-220:MSCLS-2-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-2-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423237,12 +423237,12 @@
 MS(TA-220:MSCLS-3-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-3-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423250,12 +423250,12 @@
 MS(TA-220:MSCLS-4-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-4-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423263,12 +423263,12 @@
 MS(TA-220:MSCLS-5-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-5-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423276,12 +423276,12 @@
 MS(TA-220:MSCLS-6-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-6-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423289,12 +423289,12 @@
 MS(TA-220:MSCLS-7-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-7-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423302,12 +423302,12 @@
 MS(TA-220:MSCLS-8-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-8-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423315,12 +423315,12 @@
 MS(TA-220:MSCLS-9-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-9-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423328,12 +423328,12 @@
 MS(TA-220:MSCLS-10-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-10-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423341,12 +423341,12 @@
 MS(TA-220:MSCLS-11-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-11-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423354,12 +423354,12 @@
 MS(TA-220:MSCLS-12-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-12-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423367,12 +423367,12 @@
 MS(TA-220:MSCLS-13-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-13-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423380,12 +423380,12 @@
 MS(TA-220:MSCLS-14-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-14-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423393,12 +423393,12 @@
 MS(TA-220:MSCLS-15-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-15-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423406,12 +423406,12 @@
 MS(TA-220:MSCLS-16-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-16-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423419,12 +423419,12 @@
 MS(TA-220:MSCLS-17-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-17-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423432,12 +423432,12 @@
 MS(TA-220:MSCLS-18-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 3
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 00
 MS(TA-220:MSCLS-18-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 3
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423446,12 +423446,12 @@
 MS(TA-220:MSCLS-19-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-19-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423460,12 +423460,12 @@
 MS(TA-220:MSCLS-20-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 5
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 00
 MS(TA-220:MSCLS-20-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423474,12 +423474,12 @@
 MS(TA-220:MSCLS-21-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 6
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 00
 MS(TA-220:MSCLS-21-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423488,12 +423488,12 @@
 MS(TA-220:MSCLS-22-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-22-0:UL) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS 7
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) free
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NONE}: Deallocated
@@ -423513,7 +423513,7 @@
 MS(TLLI-0xc0000000:TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) Setting Control TS 3
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000000) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000001) free
@@ -423522,7 +423522,7 @@
 MS(TLLI-0xc0000001:TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000001) Setting Control TS 5
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000001) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000001) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000002) free
@@ -423531,7 +423531,7 @@
 MS(TLLI-0xc0000002:TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000002) Setting Control TS 7
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000002) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000002) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000003) free
@@ -423540,7 +423540,7 @@
 MS(TLLI-0xc0000003:TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000003) Setting Control TS 4
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000003) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000003) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000004) free
@@ -423549,7 +423549,7 @@
 MS(TLLI-0xc0000004:TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000004) Setting Control TS 6
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000004) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000004) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000005) free
@@ -423558,7 +423558,7 @@
 MS(TLLI-0xc0000005:TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000005) Setting Control TS 3
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000005) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000005) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000006) free
@@ -423567,7 +423567,7 @@
 MS(TLLI-0xc0000006:TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000006) Setting Control TS 5
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000006) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000006) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000007) free
@@ -423576,7 +423576,7 @@
 MS(TLLI-0xc0000007:TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000007) Setting Control TS 6
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000007) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000007) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000008) free
@@ -423585,7 +423585,7 @@
 MS(TLLI-0xc0000008:TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000008) Setting Control TS 4
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000008) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000008) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000009) free
@@ -423594,7 +423594,7 @@
 MS(TLLI-0xc0000009:TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000009) Setting Control TS 6
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000009) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000009) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000000a) free
@@ -423603,7 +423603,7 @@
 MS(TLLI-0xc000000a:TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000000a) Setting Control TS 4
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000000a) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000000a) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc000000b) free
@@ -423612,7 +423612,7 @@
 MS(TLLI-0xc000000b:TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc000000b) Setting Control TS 6
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc000000b) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc000000b) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000000c) free
@@ -423621,7 +423621,7 @@
 MS(TLLI-0xc000000c:TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000000c) Setting Control TS 3
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000000c) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000000c) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000000d) free
@@ -423630,7 +423630,7 @@
 MS(TLLI-0xc000000d:TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000000d) Setting Control TS 3
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000000d) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000000d) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc000000e) free
@@ -423639,7 +423639,7 @@
 MS(TLLI-0xc000000e:TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc000000e) Setting Control TS 3
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc000000e) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc000000e) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000000f) free
@@ -423648,7 +423648,7 @@
 MS(TLLI-0xc000000f:TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000000f) Setting Control TS 3
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000000f) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000000f) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000010) free
@@ -423657,7 +423657,7 @@
 MS(TLLI-0xc0000010:TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000010) Setting Control TS 3
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000010) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000010) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000011) free
@@ -423666,7 +423666,7 @@
 MS(TLLI-0xc0000011:TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000011) Setting Control TS 3
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000011) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000011) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000012) free
@@ -423675,7 +423675,7 @@
 MS(TLLI-0xc0000012:TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000012) Setting Control TS 6
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000012) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000012) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000013) free
@@ -423684,7 +423684,7 @@
 MS(TLLI-0xc0000013:TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000013) Setting Control TS 6
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000013) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000013) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000014) free
@@ -423693,7 +423693,7 @@
 MS(TLLI-0xc0000014:TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000014) Setting Control TS 4
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000014) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000014) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000015) free
@@ -423702,7 +423702,7 @@
 MS(TLLI-0xc0000015:TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000015) Setting Control TS 6
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000015) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000015) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc0000016) free
@@ -423711,7 +423711,7 @@
 MS(TLLI-0xc0000016:TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc0000016) Setting Control TS 4
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc0000016) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc0000016) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000017) free
@@ -423720,7 +423720,7 @@
 MS(TLLI-0xc0000017:TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000017) Setting Control TS 6
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000017) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000017) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000018) free
@@ -423729,7 +423729,7 @@
 MS(TLLI-0xc0000018:TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000018) Setting Control TS 4
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000018) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000018) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc0000019) free
@@ -423738,7 +423738,7 @@
 MS(TLLI-0xc0000019:TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc0000019) Setting Control TS 6
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc0000019) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc0000019) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000001a) free
@@ -423747,7 +423747,7 @@
 MS(TLLI-0xc000001a:TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000001a) Setting Control TS 4
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000001a) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000001a) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc000001b) free
@@ -423756,7 +423756,7 @@
 MS(TLLI-0xc000001b:TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc000001b) Setting Control TS 6
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc000001b) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc000001b) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc000001c) free
@@ -423765,7 +423765,7 @@
 MS(TLLI-0xc000001c:TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc000001c) Setting Control TS 4
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc000001c) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc000001c) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc000001d) free
@@ -423774,7 +423774,7 @@
 MS(TLLI-0xc000001d:TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc000001d) Setting Control TS 6
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc000001d) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc000001d) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000001e) free
@@ -423783,7 +423783,7 @@
 MS(TLLI-0xc000001e:TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000001e) Setting Control TS 6
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000001e) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc000001e) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc000001f) free
@@ -423792,7 +423792,7 @@
 MS(TLLI-0xc000001f:TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc000001f) Setting Control TS 5
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc000001f) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc000001f) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000020) free
@@ -423801,7 +423801,7 @@
 MS(TLLI-0xc0000020:TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000020) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000020) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000020) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000021) free
@@ -423810,7 +423810,7 @@
 MS(TLLI-0xc0000021:TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000021) Setting Control TS 3
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000021) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000021) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000022) free
@@ -423819,7 +423819,7 @@
 MS(TLLI-0xc0000022:TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000022) Setting Control TS 3
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000022) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000022) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000023) free
@@ -423828,7 +423828,7 @@
 MS(TLLI-0xc0000023:TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000023) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000023) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000023) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000024) free
@@ -423837,7 +423837,7 @@
 MS(TLLI-0xc0000024:TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000024) Setting Control TS 3
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000024) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000024) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000025) free
@@ -423846,7 +423846,7 @@
 MS(TLLI-0xc0000025:TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000025) Setting Control TS 7
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000025) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000025) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000026) free
@@ -423855,7 +423855,7 @@
 MS(TLLI-0xc0000026:TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000026) Setting Control TS 3
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000026) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000026) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000027) free
@@ -423864,7 +423864,7 @@
 MS(TLLI-0xc0000027:TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000027) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000027) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc0000027) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000028) free
@@ -423873,7 +423873,7 @@
 MS(TLLI-0xc0000028:TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000028) Setting Control TS 7
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000028) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000028) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000029) free
@@ -423882,7 +423882,7 @@
 MS(TLLI-0xc0000029:TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000029) Setting Control TS 3
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000029) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000029) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000002a) free
@@ -423891,7 +423891,7 @@
 MS(TLLI-0xc000002a:TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000002a) Setting Control TS 4
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000002a) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc000002a) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc000002b) free
@@ -423900,7 +423900,7 @@
 MS(TLLI-0xc000002b:TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc000002b) Setting Control TS 7
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc000002b) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc000002b) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000002c) free
@@ -423909,7 +423909,7 @@
 MS(TLLI-0xc000002c:TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000002c) Setting Control TS 3
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000002c) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000002c) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc000002d) free
@@ -423918,7 +423918,7 @@
 MS(TLLI-0xc000002d:TA-220:MSCLS-46-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc000002d) Setting Control TS 4
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc000002d) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc000002d) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000002e) free
@@ -423927,7 +423927,7 @@
 MS(TLLI-0xc000002e:TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000002e) Setting Control TS 7
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000002e) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000002e) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000002f) free
@@ -423936,7 +423936,7 @@
 MS(TLLI-0xc000002f:TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000002f) Setting Control TS 3
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000002f) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000002f) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000030) free
@@ -423945,7 +423945,7 @@
 MS(TLLI-0xc0000030:TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000030) Setting Control TS 6
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000030) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xc0000030) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000031) free
@@ -423954,7 +423954,7 @@
 MS(TLLI-0xc0000031:TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000031) Setting Control TS 4
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000031) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000031) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000032) free
@@ -423963,7 +423963,7 @@
 MS(TLLI-0xc0000032:TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000032) Setting Control TS 7
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000032) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:TLLI-0xc0000032) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc0000033) free
@@ -423972,7 +423972,7 @@
 MS(TLLI-0xc0000033:TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc0000033) Setting Control TS 3
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc0000033) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc0000033) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000034) free
@@ -423981,7 +423981,7 @@
 MS(TLLI-0xc0000034:TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000034) Setting Control TS 6
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000034) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:TLLI-0xc0000034) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000035) free
@@ -423990,7 +423990,7 @@
 MS(TLLI-0xc0000035:TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000035) Setting Control TS 4
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000035) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc0000035) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000036) free
@@ -423999,7 +423999,7 @@
 MS(TLLI-0xc0000036:TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000036) Setting Control TS 7
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000036) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000036) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000037) free
@@ -424008,7 +424008,7 @@
 MS(TLLI-0xc0000037:TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000037) Setting Control TS 3
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000037) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000037) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc0000038) free
@@ -424017,7 +424017,7 @@
 MS(TLLI-0xc0000038:TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc0000038) Setting Control TS 6
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc0000038) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc0000038) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000039) free
@@ -424026,7 +424026,7 @@
 MS(TLLI-0xc0000039:TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000039) Setting Control TS 4
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000039) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000039) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000003a) free
@@ -424035,7 +424035,7 @@
 MS(TLLI-0xc000003a:TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000003a) Setting Control TS 7
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000003a) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000003a) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc000003b) free
@@ -424044,7 +424044,7 @@
 MS(TLLI-0xc000003b:TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc000003b) Setting Control TS 3
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc000003b) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc000003b) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000003c) free
@@ -424053,7 +424053,7 @@
 MS(TLLI-0xc000003c:TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000003c) Setting Control TS 6
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000003c) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000003c) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003d) free
@@ -424062,7 +424062,7 @@
 MS(TLLI-0xc000003d:TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003d) Setting Control TS 5
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003d) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xc000003d) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc000003e) free
@@ -424071,7 +424071,7 @@
 MS(TLLI-0xc000003e:TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc000003e) Setting Control TS 4
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc000003e) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc000003e) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000003f) free
@@ -424080,7 +424080,7 @@
 MS(TLLI-0xc000003f:TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000003f) Setting Control TS 7
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000003f) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000003f) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc0000040) free
@@ -424089,7 +424089,7 @@
 MS(TLLI-0xc0000040:TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc0000040) Setting Control TS 3
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc0000040) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc0000040) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000041) free
@@ -424098,7 +424098,7 @@
 MS(TLLI-0xc0000041:TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000041) Setting Control TS 6
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000041) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000041) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000042) free
@@ -424107,7 +424107,7 @@
 MS(TLLI-0xc0000042:TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000042) Setting Control TS 5
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000042) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:TLLI-0xc0000042) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc0000043) free
@@ -424116,7 +424116,7 @@
 MS(TLLI-0xc0000043:TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc0000043) Setting Control TS 4
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc0000043) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc0000043) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000044) free
@@ -424125,7 +424125,7 @@
 MS(TLLI-0xc0000044:TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000044) Setting Control TS 7
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000044) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc0000044) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000045) free
@@ -424134,7 +424134,7 @@
 MS(TLLI-0xc0000045:TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000045) Setting Control TS 3
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000045) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000045) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc0000046) free
@@ -424143,7 +424143,7 @@
 MS(TLLI-0xc0000046:TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc0000046) Setting Control TS 6
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc0000046) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc0000046) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000047) free
@@ -424152,7 +424152,7 @@
 MS(TLLI-0xc0000047:TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000047) Setting Control TS 5
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000047) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:TLLI-0xc0000047) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000048) free
@@ -424161,7 +424161,7 @@
 MS(TLLI-0xc0000048:TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000048) Setting Control TS 4
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000048) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000048) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000049) free
@@ -424170,7 +424170,7 @@
 MS(TLLI-0xc0000049:TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000049) Setting Control TS 7
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000049) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc0000049) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc000004a) free
@@ -424179,7 +424179,7 @@
 MS(TLLI-0xc000004a:TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc000004a) Setting Control TS 3
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc000004a) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc000004a) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc000004b) free
@@ -424188,7 +424188,7 @@
 MS(TLLI-0xc000004b:TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc000004b) Setting Control TS 6
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc000004b) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc000004b) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000004c) free
@@ -424197,7 +424197,7 @@
 MS(TLLI-0xc000004c:TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000004c) Setting Control TS 5
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000004c) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:TLLI-0xc000004c) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc000004d) free
@@ -424206,7 +424206,7 @@
 MS(TLLI-0xc000004d:TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc000004d) Setting Control TS 4
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc000004d) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc000004d) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000004e) free
@@ -424215,7 +424215,7 @@
 MS(TLLI-0xc000004e:TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000004e) Setting Control TS 7
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000004e) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000004e) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000004f) free
@@ -424224,7 +424224,7 @@
 MS(TLLI-0xc000004f:TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000004f) Setting Control TS 3
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000004f) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000004f) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000050) free
@@ -424233,7 +424233,7 @@
 MS(TLLI-0xc0000050:TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000050) Setting Control TS 6
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000050) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc0000050) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc0000051) free
@@ -424242,7 +424242,7 @@
 MS(TLLI-0xc0000051:TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc0000051) Setting Control TS 4
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc0000051) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc0000051) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000052) free
@@ -424251,7 +424251,7 @@
 MS(TLLI-0xc0000052:TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000052) Setting Control TS 7
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000052) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc0000052) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc0000053) free
@@ -424260,7 +424260,7 @@
 MS(TLLI-0xc0000053:TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc0000053) Setting Control TS 6
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc0000053) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc0000053) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000054) free
@@ -424269,7 +424269,7 @@
 MS(TLLI-0xc0000054:TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000054) Setting Control TS 4
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000054) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000054) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000055) free
@@ -424278,7 +424278,7 @@
 MS(TLLI-0xc0000055:TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000055) Setting Control TS 7
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000055) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000055) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000056) free
@@ -424287,7 +424287,7 @@
 MS(TLLI-0xc0000056:TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000056) Setting Control TS 6
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000056) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000056) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc0000057) free
@@ -424296,7 +424296,7 @@
 MS(TLLI-0xc0000057:TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc0000057) Setting Control TS 7
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc0000057) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc0000057) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000058) free
@@ -424305,7 +424305,7 @@
 MS(TLLI-0xc0000058:TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000058) Setting Control TS 6
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000058) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000058) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000059) free
@@ -424314,7 +424314,7 @@
 MS(TLLI-0xc0000059:TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000059) Setting Control TS 5
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000059) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:TLLI-0xc0000059) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000005a) free
@@ -424323,7 +424323,7 @@
 MS(TLLI-0xc000005a:TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000005a) Setting Control TS 5
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000005a) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:TLLI-0xc000005a) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000005b) free
@@ -424332,7 +424332,7 @@
 MS(TLLI-0xc000005b:TA-220:MSCLS-46-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000005b) Setting Control TS 5
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000005b) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:TLLI-0xc000005b) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc000005c) free
@@ -424341,7 +424341,7 @@
 MS(TLLI-0xc000005c:TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc000005c) Setting Control TS 5
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc000005c) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:TLLI-0xc000005c) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000005d) free
@@ -424350,7 +424350,7 @@
 MS(TLLI-0xc000005d:TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000005d) Setting Control TS 5
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000005d) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:TLLI-0xc000005d) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000005e) free
@@ -424359,7 +424359,7 @@
 MS(TLLI-0xc000005e:TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000005e) Setting Control TS 5
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000005e) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:TLLI-0xc000005e) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc000005f) free
@@ -424368,7 +424368,7 @@
 MS(TLLI-0xc000005f:TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc000005f) Setting Control TS 5
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc000005f) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:TLLI-0xc000005f) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000060) free
@@ -424377,7 +424377,7 @@
 MS(TLLI-0xc0000060:TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000060) Setting Control TS 5
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000060) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:TLLI-0xc0000060) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc0000061) free
@@ -424386,7 +424386,7 @@
 MS(TLLI-0xc0000061:TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc0000061) Setting Control TS 5
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc0000061) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:TLLI-0xc0000061) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000062) free
@@ -424395,7 +424395,7 @@
 MS(TLLI-0xc0000062:TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000062) Setting Control TS 5
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000062) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000062) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000063) free
@@ -424404,7 +424404,7 @@
 MS(TLLI-0xc0000063:TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000063) Setting Control TS 7
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000063) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:TLLI-0xc0000063) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000064) free
@@ -424413,7 +424413,7 @@
 MS(TLLI-0xc0000064:TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000064) Setting Control TS 5
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000064) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000064) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000065) free
@@ -424422,7 +424422,7 @@
 MS(TLLI-0xc0000065:TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000065) Setting Control TS 7
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000065) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:TLLI-0xc0000065) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc0000066) free
@@ -424431,7 +424431,7 @@
 MS(TLLI-0xc0000066:TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc0000066) Setting Control TS 5
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc0000066) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc0000066) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc0000067) free
@@ -424440,7 +424440,7 @@
 MS(TLLI-0xc0000067:TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc0000067) Setting Control TS 7
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc0000067) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:TLLI-0xc0000067) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000068) free
@@ -424449,7 +424449,7 @@
 MS(TLLI-0xc0000068:TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000068) Setting Control TS 5
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000068) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000068) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000069) free
@@ -424458,7 +424458,7 @@
 MS(TLLI-0xc0000069:TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000069) Setting Control TS 7
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000069) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:TLLI-0xc0000069) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc000006a) free
@@ -424467,7 +424467,7 @@
 MS(TLLI-0xc000006a:TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc000006a) Setting Control TS 4
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc000006a) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc000006a) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc000006b) free
@@ -424476,7 +424476,7 @@
 MS(TLLI-0xc000006b:TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc000006b) Setting Control TS 5
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc000006b) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc000006b) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc000006c) free
@@ -424485,7 +424485,7 @@
 MS(TLLI-0xc000006c:TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc000006c) Setting Control TS 7
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc000006c) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:TLLI-0xc000006c) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006d) free
@@ -424494,7 +424494,7 @@
 MS(TLLI-0xc000006d:TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006d) Setting Control TS 4
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006d) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006d) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006e) free
@@ -424503,7 +424503,7 @@
 MS(TLLI-0xc000006e:TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006e) Setting Control TS 5
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006e) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006e) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006f) free
@@ -424512,7 +424512,7 @@
 MS(TLLI-0xc000006f:TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006f) Setting Control TS 7
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006f) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:TLLI-0xc000006f) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000070) free
@@ -424521,7 +424521,7 @@
 MS(TLLI-0xc0000070:TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000070) Setting Control TS 3
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000070) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000070) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000071) free
@@ -424530,7 +424530,7 @@
 MS(TLLI-0xc0000071:TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000071) Setting Control TS 4
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000071) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000071) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000072) free
@@ -424539,7 +424539,7 @@
 MS(TLLI-0xc0000072:TA-220:MSCLS-23-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000072) Setting Control TS 5
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000072) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000072) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000073) free
@@ -424548,7 +424548,7 @@
 MS(TLLI-0xc0000073:TA-220:MSCLS-24-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000073) Setting Control TS 7
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000073) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:TLLI-0xc0000073) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000074) free
@@ -424557,7 +424557,7 @@
 MS(TLLI-0xc0000074:TA-220:MSCLS-25-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000074) Setting Control TS 3
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000074) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000074) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000075) free
@@ -424566,7 +424566,7 @@
 MS(TLLI-0xc0000075:TA-220:MSCLS-26-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000075) Setting Control TS 4
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000075) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000075) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000076) free
@@ -424575,7 +424575,7 @@
 MS(TLLI-0xc0000076:TA-220:MSCLS-27-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000076) Setting Control TS 5
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000076) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000076) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000077) free
@@ -424584,7 +424584,7 @@
 MS(TLLI-0xc0000077:TA-220:MSCLS-28-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000077) Setting Control TS 7
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000077) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:TLLI-0xc0000077) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc0000078) free
@@ -424593,7 +424593,7 @@
 MS(TLLI-0xc0000078:TA-220:MSCLS-29-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc0000078) Setting Control TS 3
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc0000078) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc0000078) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc0000079) free
@@ -424602,7 +424602,7 @@
 MS(TLLI-0xc0000079:TA-220:MSCLS-30-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc0000079) Setting Control TS 4
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc0000079) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc0000079) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc000007a) free
@@ -424611,7 +424611,7 @@
 MS(TLLI-0xc000007a:TA-220:MSCLS-31-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc000007a) Setting Control TS 5
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc000007a) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc000007a) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc000007b) free
@@ -424620,7 +424620,7 @@
 MS(TLLI-0xc000007b:TA-220:MSCLS-32-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc000007b) Setting Control TS 6
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc000007b) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc000007b) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc000007c) free
@@ -424629,7 +424629,7 @@
 MS(TLLI-0xc000007c:TA-220:MSCLS-33-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc000007c) Setting Control TS 7
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc000007c) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:TLLI-0xc000007c) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc000007d) free
@@ -424638,7 +424638,7 @@
 MS(TLLI-0xc000007d:TA-220:MSCLS-34-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc000007d) Setting Control TS 3
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc000007d) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc000007d) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc000007e) free
@@ -424647,7 +424647,7 @@
 MS(TLLI-0xc000007e:TA-220:MSCLS-35-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc000007e) Setting Control TS 4
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc000007e) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc000007e) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc000007f) free
@@ -424656,7 +424656,7 @@
 MS(TLLI-0xc000007f:TA-220:MSCLS-36-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc000007f) Setting Control TS 5
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc000007f) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc000007f) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc0000080) free
@@ -424665,7 +424665,7 @@
 MS(TLLI-0xc0000080:TA-220:MSCLS-37-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc0000080) Setting Control TS 6
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc0000080) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc0000080) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc0000081) free
@@ -424674,7 +424674,7 @@
 MS(TLLI-0xc0000081:TA-220:MSCLS-38-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc0000081) Setting Control TS 7
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc0000081) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:TLLI-0xc0000081) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000082) free
@@ -424683,7 +424683,7 @@
 MS(TLLI-0xc0000082:TA-220:MSCLS-39-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000082) Setting Control TS 3
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000082) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000082) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000083) free
@@ -424692,7 +424692,7 @@
 MS(TLLI-0xc0000083:TA-220:MSCLS-40-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000083) Setting Control TS 4
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000083) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000083) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000084) free
@@ -424701,7 +424701,7 @@
 MS(TLLI-0xc0000084:TA-220:MSCLS-41-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000084) Setting Control TS 5
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000084) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000084) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000085) free
@@ -424710,7 +424710,7 @@
 MS(TLLI-0xc0000085:TA-220:MSCLS-42-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000085) Setting Control TS 6
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000085) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000085) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000086) free
@@ -424719,7 +424719,7 @@
 MS(TLLI-0xc0000086:TA-220:MSCLS-43-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000086) Setting Control TS 7
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000086) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:TLLI-0xc0000086) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc0000087) free
@@ -424728,7 +424728,7 @@
 MS(TLLI-0xc0000087:TA-220:MSCLS-44-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc0000087) Setting Control TS 3
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc0000087) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc0000087) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc0000088) free
@@ -424737,7 +424737,7 @@
 MS(TLLI-0xc0000088:TA-220:MSCLS-45-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc0000088) Setting Control TS 4
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc0000088) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc0000088) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc0000089) free
@@ -424746,7 +424746,7 @@
 MS(TLLI-0xc0000089:TA-220:MSCLS-46-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc0000089) Setting Control TS 5
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc0000089) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc0000089) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc000008a) free
@@ -424755,7 +424755,7 @@
 MS(TLLI-0xc000008a:TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc000008a) Setting Control TS 6
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc000008a) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc000008a) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc000008b) free
@@ -424764,7 +424764,7 @@
 MS(TLLI-0xc000008b:TA-220:MSCLS-2-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc000008b) Setting Control TS 7
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc000008b) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:TLLI-0xc000008b) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008c) free
@@ -424773,7 +424773,7 @@
 MS(TLLI-0xc000008c:TA-220:MSCLS-3-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008c) Setting Control TS 3
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008c) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008c) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008d) free
@@ -424782,7 +424782,7 @@
 MS(TLLI-0xc000008d:TA-220:MSCLS-4-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008d) Setting Control TS 4
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008d) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008d) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008e) free
@@ -424791,7 +424791,7 @@
 MS(TLLI-0xc000008e:TA-220:MSCLS-5-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008e) Setting Control TS 5
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008e) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008e) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008f) free
@@ -424800,7 +424800,7 @@
 MS(TLLI-0xc000008f:TA-220:MSCLS-6-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008f) Setting Control TS 6
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008f) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc000008f) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc0000090) free
@@ -424809,7 +424809,7 @@
 MS(TLLI-0xc0000090:TA-220:MSCLS-7-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc0000090) Setting Control TS 7
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc0000090) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:TLLI-0xc0000090) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000091) free
@@ -424818,7 +424818,7 @@
 MS(TLLI-0xc0000091:TA-220:MSCLS-8-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000091) Setting Control TS 3
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000091) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000091) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000092) free
@@ -424827,7 +424827,7 @@
 MS(TLLI-0xc0000092:TA-220:MSCLS-9-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000092) Setting Control TS 4
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000092) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000092) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000093) free
@@ -424836,7 +424836,7 @@
 MS(TLLI-0xc0000093:TA-220:MSCLS-10-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000093) Setting Control TS 5
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000093) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000093) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000094) free
@@ -424845,7 +424845,7 @@
 MS(TLLI-0xc0000094:TA-220:MSCLS-11-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000094) Setting Control TS 6
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000094) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000094) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000095) free
@@ -424854,7 +424854,7 @@
 MS(TLLI-0xc0000095:TA-220:MSCLS-12-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000095) Setting Control TS 7
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000095) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:TLLI-0xc0000095) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000096) free
@@ -424863,7 +424863,7 @@
 MS(TLLI-0xc0000096:TA-220:MSCLS-13-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000096) Setting Control TS 3
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000096) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000096) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000097) free
@@ -424872,7 +424872,7 @@
 MS(TLLI-0xc0000097:TA-220:MSCLS-14-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000097) Setting Control TS 4
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000097) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000097) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000098) free
@@ -424881,7 +424881,7 @@
 MS(TLLI-0xc0000098:TA-220:MSCLS-15-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000098) Setting Control TS 5
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000098) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000098) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000099) free
@@ -424890,7 +424890,7 @@
 MS(TLLI-0xc0000099:TA-220:MSCLS-16-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000099) Setting Control TS 6
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000099) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc0000099) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc000009a) free
@@ -424899,7 +424899,7 @@
 MS(TLLI-0xc000009a:TA-220:MSCLS-17-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc000009a) Setting Control TS 7
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc000009a) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:TLLI-0xc000009a) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009b) free
@@ -424908,7 +424908,7 @@
 MS(TLLI-0xc000009b:TA-220:MSCLS-18-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009b) Setting Control TS 3
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009b) Setting Control TS PDCH(bts=0,trx=0,ts=3)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009b) Allocated: trx = 0, ul_slots = 08, dl_slots = 08
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009c) free
@@ -424917,7 +424917,7 @@
 MS(TLLI-0xc000009c:TA-220:MSCLS-19-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009c) Setting Control TS 4
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009c) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009c) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009d) free
@@ -424926,7 +424926,7 @@
 MS(TLLI-0xc000009d:TA-220:MSCLS-20-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009d) Setting Control TS 5
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009d) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009d) Allocated: trx = 0, ul_slots = 20, dl_slots = 20
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009e) free
@@ -424935,7 +424935,7 @@
 MS(TLLI-0xc000009e:TA-220:MSCLS-21-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009e) Setting Control TS 6
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009e) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009e) Allocated: trx = 0, ul_slots = 40, dl_slots = 40
 No TFI available (suggested TRX: 0).
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009f) free
@@ -424944,7 +424944,7 @@
 MS(TLLI-0xc000009f:TA-220:MSCLS-22-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009f) Setting Control TS 7
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009f) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:TLLI-0xc000009f) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 No TFI available (suggested TRX: 0).
 MS(TA-220:MSCLS-23-0) Allocating DL TBF
@@ -424958,12 +424958,12 @@
 MS(TA-220:MSCLS-11-11) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS 6
+TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=6)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 40, dl_slots = f0
 MS(TA-220:MSCLS-11-11) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-1:STATE-NEW:EGPRS) Setting Control TS 5
+TBF(DL:TFI-0-0-1:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=5)
 TBF(DL:TFI-0-0-1:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 20, dl_slots = 70
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) free
 UL_ASS_TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS){NONE}: Deallocated
diff --git a/tests/alloc/AllocTest.ok b/tests/alloc/AllocTest.ok
index 5b3efa2..bfef737 100644
--- a/tests/alloc/AllocTest.ok
+++ b/tests/alloc/AllocTest.ok
@@ -5,1525 +5,1525 @@
 Going to test multislot assignment MS_CLASS=0
 Testing UL then DL assignment.
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 PDCH[6] is used for UL
 PDCH[7] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing jolly example
 PDCH[3] is used for UL
-PDCH[3] is control_ts for UL
-PDCH[3] is first common for UL
+PDCH(bts=0,trx=0,ts=3) is control_ts for UL
+PDCH(bts=0,trx=0,ts=3) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
 PDCH[4] is used for DL
-PDCH[3] is control_ts for DL
-PDCH[3] is first common for DL
+PDCH(bts=0,trx=0,ts=3) is control_ts for DL
+PDCH(bts=0,trx=0,ts=3) is first common for DL
 Going to test multislot assignment MS_CLASS=1
 Testing UL then DL assignment.
 PDCH[5] is used for UL
-PDCH[5] is control_ts for UL
-PDCH[5] is first common for UL
+PDCH(bts=0,trx=0,ts=5) is control_ts for UL
+PDCH(bts=0,trx=0,ts=5) is first common for UL
 PDCH[5] is used for DL
-PDCH[5] is control_ts for DL
-PDCH[5] is first common for DL
+PDCH(bts=0,trx=0,ts=5) is control_ts for DL
+PDCH(bts=0,trx=0,ts=5) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[5] is used for DL
-PDCH[5] is control_ts for DL
-PDCH[5] is first common for DL
+PDCH(bts=0,trx=0,ts=5) is control_ts for DL
+PDCH(bts=0,trx=0,ts=5) is first common for DL
 PDCH[5] is used for UL
-PDCH[5] is control_ts for UL
-PDCH[5] is first common for UL
+PDCH(bts=0,trx=0,ts=5) is control_ts for UL
+PDCH(bts=0,trx=0,ts=5) is first common for UL
 PDCH[5] is used for DL
-PDCH[5] is control_ts for DL
-PDCH[5] is first common for DL
+PDCH(bts=0,trx=0,ts=5) is control_ts for DL
+PDCH(bts=0,trx=0,ts=5) is first common for DL
 Testing jolly example
 PDCH[1] is used for UL
-PDCH[1] is control_ts for UL
-PDCH[1] is first common for UL
+PDCH(bts=0,trx=0,ts=1) is control_ts for UL
+PDCH(bts=0,trx=0,ts=1) is first common for UL
 PDCH[1] is used for DL
-PDCH[1] is control_ts for DL
-PDCH[1] is first common for DL
+PDCH(bts=0,trx=0,ts=1) is control_ts for DL
+PDCH(bts=0,trx=0,ts=1) is first common for DL
 Going to test multislot assignment MS_CLASS=2
 Testing UL then DL assignment.
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing jolly example
 PDCH[2] is used for UL
-PDCH[2] is control_ts for UL
-PDCH[2] is first common for UL
+PDCH(bts=0,trx=0,ts=2) is control_ts for UL
+PDCH(bts=0,trx=0,ts=2) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
-PDCH[2] is control_ts for DL
-PDCH[2] is first common for DL
+PDCH(bts=0,trx=0,ts=2) is control_ts for DL
+PDCH(bts=0,trx=0,ts=2) is first common for DL
 Going to test multislot assignment MS_CLASS=3
 Testing UL then DL assignment.
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing jolly example
 PDCH[2] is used for UL
-PDCH[2] is control_ts for UL
-PDCH[2] is first common for UL
+PDCH(bts=0,trx=0,ts=2) is control_ts for UL
+PDCH(bts=0,trx=0,ts=2) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
-PDCH[2] is control_ts for DL
-PDCH[2] is first common for DL
+PDCH(bts=0,trx=0,ts=2) is control_ts for DL
+PDCH(bts=0,trx=0,ts=2) is first common for DL
 Going to test multislot assignment MS_CLASS=4
 Testing UL then DL assignment.
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing jolly example
 PDCH[2] is used for UL
-PDCH[2] is control_ts for UL
-PDCH[2] is first common for UL
+PDCH(bts=0,trx=0,ts=2) is control_ts for UL
+PDCH(bts=0,trx=0,ts=2) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
-PDCH[2] is control_ts for DL
-PDCH[2] is first common for DL
+PDCH(bts=0,trx=0,ts=2) is control_ts for DL
+PDCH(bts=0,trx=0,ts=2) is first common for DL
 Going to test multislot assignment MS_CLASS=5
 Testing UL then DL assignment.
 PDCH[5] is used for UL
-PDCH[5] is control_ts for UL
-PDCH[5] is first common for UL
+PDCH(bts=0,trx=0,ts=5) is control_ts for UL
+PDCH(bts=0,trx=0,ts=5) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
-PDCH[5] is control_ts for DL
-PDCH[5] is first common for DL
+PDCH(bts=0,trx=0,ts=5) is control_ts for DL
+PDCH(bts=0,trx=0,ts=5) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[5] is used for DL
-PDCH[5] is control_ts for DL
-PDCH[5] is first common for DL
+PDCH(bts=0,trx=0,ts=5) is control_ts for DL
+PDCH(bts=0,trx=0,ts=5) is first common for DL
 PDCH[5] is used for UL
 PDCH[6] is used for UL
-PDCH[5] is control_ts for UL
-PDCH[5] is first common for UL
+PDCH(bts=0,trx=0,ts=5) is control_ts for UL
+PDCH(bts=0,trx=0,ts=5) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
-PDCH[5] is control_ts for DL
-PDCH[5] is first common for DL
+PDCH(bts=0,trx=0,ts=5) is control_ts for DL
+PDCH(bts=0,trx=0,ts=5) is first common for DL
 Testing jolly example
 PDCH[1] is used for UL
 PDCH[2] is used for UL
-PDCH[1] is control_ts for UL
-PDCH[1] is first common for UL
+PDCH(bts=0,trx=0,ts=1) is control_ts for UL
+PDCH(bts=0,trx=0,ts=1) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
-PDCH[1] is control_ts for DL
-PDCH[1] is first common for DL
+PDCH(bts=0,trx=0,ts=1) is control_ts for DL
+PDCH(bts=0,trx=0,ts=1) is first common for DL
 Going to test multislot assignment MS_CLASS=6
 Testing UL then DL assignment.
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing jolly example
 PDCH[2] is used for UL
-PDCH[2] is control_ts for UL
-PDCH[2] is first common for UL
+PDCH(bts=0,trx=0,ts=2) is control_ts for UL
+PDCH(bts=0,trx=0,ts=2) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
-PDCH[2] is control_ts for DL
-PDCH[2] is first common for DL
+PDCH(bts=0,trx=0,ts=2) is control_ts for DL
+PDCH(bts=0,trx=0,ts=2) is first common for DL
 Going to test multislot assignment MS_CLASS=7
 Testing UL then DL assignment.
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing jolly example
 PDCH[2] is used for UL
-PDCH[2] is control_ts for UL
-PDCH[2] is first common for UL
+PDCH(bts=0,trx=0,ts=2) is control_ts for UL
+PDCH(bts=0,trx=0,ts=2) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
-PDCH[2] is control_ts for DL
-PDCH[2] is first common for DL
+PDCH(bts=0,trx=0,ts=2) is control_ts for DL
+PDCH(bts=0,trx=0,ts=2) is first common for DL
 Going to test multislot assignment MS_CLASS=8
 Testing UL then DL assignment.
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing jolly example
 PDCH[3] is used for UL
-PDCH[3] is control_ts for UL
-PDCH[3] is first common for UL
+PDCH(bts=0,trx=0,ts=3) is control_ts for UL
+PDCH(bts=0,trx=0,ts=3) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
 PDCH[4] is used for DL
-PDCH[3] is control_ts for DL
-PDCH[3] is first common for DL
+PDCH(bts=0,trx=0,ts=3) is control_ts for DL
+PDCH(bts=0,trx=0,ts=3) is first common for DL
 Going to test multislot assignment MS_CLASS=9
 Testing UL then DL assignment.
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 PDCH[6] is used for UL
 PDCH[7] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing jolly example
 PDCH[2] is used for UL
 PDCH[3] is used for UL
-PDCH[2] is control_ts for UL
-PDCH[2] is first common for UL
+PDCH(bts=0,trx=0,ts=2) is control_ts for UL
+PDCH(bts=0,trx=0,ts=2) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
-PDCH[2] is control_ts for DL
-PDCH[2] is first common for DL
+PDCH(bts=0,trx=0,ts=2) is control_ts for DL
+PDCH(bts=0,trx=0,ts=2) is first common for DL
 Going to test multislot assignment MS_CLASS=10
 Testing UL then DL assignment.
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 PDCH[6] is used for UL
 PDCH[7] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing jolly example
 PDCH[3] is used for UL
-PDCH[3] is control_ts for UL
-PDCH[3] is first common for UL
+PDCH(bts=0,trx=0,ts=3) is control_ts for UL
+PDCH(bts=0,trx=0,ts=3) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
 PDCH[4] is used for DL
-PDCH[3] is control_ts for DL
-PDCH[3] is first common for DL
+PDCH(bts=0,trx=0,ts=3) is control_ts for DL
+PDCH(bts=0,trx=0,ts=3) is first common for DL
 Going to test multislot assignment MS_CLASS=11
 Testing UL then DL assignment.
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 PDCH[6] is used for UL
 PDCH[7] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing jolly example
 PDCH[3] is used for UL
-PDCH[3] is control_ts for UL
-PDCH[3] is first common for UL
+PDCH(bts=0,trx=0,ts=3) is control_ts for UL
+PDCH(bts=0,trx=0,ts=3) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
 PDCH[4] is used for DL
-PDCH[3] is control_ts for DL
-PDCH[3] is first common for DL
+PDCH(bts=0,trx=0,ts=3) is control_ts for DL
+PDCH(bts=0,trx=0,ts=3) is first common for DL
 Going to test multislot assignment MS_CLASS=12
 Testing UL then DL assignment.
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 PDCH[6] is used for UL
 PDCH[7] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing jolly example
 PDCH[3] is used for UL
-PDCH[3] is control_ts for UL
-PDCH[3] is first common for UL
+PDCH(bts=0,trx=0,ts=3) is control_ts for UL
+PDCH(bts=0,trx=0,ts=3) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
 PDCH[4] is used for DL
-PDCH[3] is control_ts for DL
-PDCH[3] is first common for DL
+PDCH(bts=0,trx=0,ts=3) is control_ts for DL
+PDCH(bts=0,trx=0,ts=3) is first common for DL
 Going to test multislot assignment MS_CLASS=13
 Testing UL then DL assignment.
 PDCH[5] is used for UL
-PDCH[5] is control_ts for UL
-PDCH[5] is first common for UL
+PDCH(bts=0,trx=0,ts=5) is control_ts for UL
+PDCH(bts=0,trx=0,ts=5) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[5] is control_ts for DL
-PDCH[5] is first common for DL
+PDCH(bts=0,trx=0,ts=5) is control_ts for DL
+PDCH(bts=0,trx=0,ts=5) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[5] is used for DL
-PDCH[5] is control_ts for DL
-PDCH[5] is first common for DL
+PDCH(bts=0,trx=0,ts=5) is control_ts for DL
+PDCH(bts=0,trx=0,ts=5) is first common for DL
 PDCH[5] is used for UL
 PDCH[6] is used for UL
 PDCH[7] is used for UL
-PDCH[5] is control_ts for UL
-PDCH[5] is first common for UL
+PDCH(bts=0,trx=0,ts=5) is control_ts for UL
+PDCH(bts=0,trx=0,ts=5) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[5] is control_ts for DL
-PDCH[5] is first common for DL
+PDCH(bts=0,trx=0,ts=5) is control_ts for DL
+PDCH(bts=0,trx=0,ts=5) is first common for DL
 Testing jolly example
 PDCH[1] is used for UL
 PDCH[2] is used for UL
 PDCH[3] is used for UL
-PDCH[1] is control_ts for UL
-PDCH[1] is first common for UL
+PDCH(bts=0,trx=0,ts=1) is control_ts for UL
+PDCH(bts=0,trx=0,ts=1) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
-PDCH[1] is control_ts for DL
-PDCH[1] is first common for DL
+PDCH(bts=0,trx=0,ts=1) is control_ts for DL
+PDCH(bts=0,trx=0,ts=1) is first common for DL
 Going to test multislot assignment MS_CLASS=14
 Testing UL then DL assignment.
 PDCH[5] is used for UL
-PDCH[5] is control_ts for UL
-PDCH[5] is first common for UL
+PDCH(bts=0,trx=0,ts=5) is control_ts for UL
+PDCH(bts=0,trx=0,ts=5) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[5] is control_ts for DL
-PDCH[5] is first common for DL
+PDCH(bts=0,trx=0,ts=5) is control_ts for DL
+PDCH(bts=0,trx=0,ts=5) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[5] is used for DL
-PDCH[5] is control_ts for DL
-PDCH[5] is first common for DL
+PDCH(bts=0,trx=0,ts=5) is control_ts for DL
+PDCH(bts=0,trx=0,ts=5) is first common for DL
 PDCH[5] is used for UL
 PDCH[6] is used for UL
 PDCH[7] is used for UL
-PDCH[5] is control_ts for UL
-PDCH[5] is first common for UL
+PDCH(bts=0,trx=0,ts=5) is control_ts for UL
+PDCH(bts=0,trx=0,ts=5) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[5] is control_ts for DL
-PDCH[5] is first common for DL
+PDCH(bts=0,trx=0,ts=5) is control_ts for DL
+PDCH(bts=0,trx=0,ts=5) is first common for DL
 Testing jolly example
 PDCH[1] is used for UL
 PDCH[2] is used for UL
 PDCH[3] is used for UL
 PDCH[4] is used for UL
-PDCH[1] is control_ts for UL
-PDCH[1] is first common for UL
+PDCH(bts=0,trx=0,ts=1) is control_ts for UL
+PDCH(bts=0,trx=0,ts=1) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
 PDCH[4] is used for DL
-PDCH[1] is control_ts for DL
-PDCH[1] is first common for DL
+PDCH(bts=0,trx=0,ts=1) is control_ts for DL
+PDCH(bts=0,trx=0,ts=1) is first common for DL
 Going to test multislot assignment MS_CLASS=15
 Testing UL then DL assignment.
 PDCH[5] is used for UL
-PDCH[5] is control_ts for UL
-PDCH[5] is first common for UL
+PDCH(bts=0,trx=0,ts=5) is control_ts for UL
+PDCH(bts=0,trx=0,ts=5) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[5] is control_ts for DL
-PDCH[5] is first common for DL
+PDCH(bts=0,trx=0,ts=5) is control_ts for DL
+PDCH(bts=0,trx=0,ts=5) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[5] is used for DL
-PDCH[5] is control_ts for DL
-PDCH[5] is first common for DL
+PDCH(bts=0,trx=0,ts=5) is control_ts for DL
+PDCH(bts=0,trx=0,ts=5) is first common for DL
 PDCH[5] is used for UL
 PDCH[6] is used for UL
 PDCH[7] is used for UL
-PDCH[5] is control_ts for UL
-PDCH[5] is first common for UL
+PDCH(bts=0,trx=0,ts=5) is control_ts for UL
+PDCH(bts=0,trx=0,ts=5) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[5] is control_ts for DL
-PDCH[5] is first common for DL
+PDCH(bts=0,trx=0,ts=5) is control_ts for DL
+PDCH(bts=0,trx=0,ts=5) is first common for DL
 Testing jolly example
 PDCH[1] is used for UL
 PDCH[2] is used for UL
 PDCH[3] is used for UL
 PDCH[4] is used for UL
-PDCH[1] is control_ts for UL
-PDCH[1] is first common for UL
+PDCH(bts=0,trx=0,ts=1) is control_ts for UL
+PDCH(bts=0,trx=0,ts=1) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
 PDCH[4] is used for DL
-PDCH[1] is control_ts for DL
-PDCH[1] is first common for DL
+PDCH(bts=0,trx=0,ts=1) is control_ts for DL
+PDCH(bts=0,trx=0,ts=1) is first common for DL
 Going to test multislot assignment MS_CLASS=16
 Testing UL then DL assignment.
 PDCH[5] is used for UL
-PDCH[5] is control_ts for UL
-PDCH[5] is first common for UL
+PDCH(bts=0,trx=0,ts=5) is control_ts for UL
+PDCH(bts=0,trx=0,ts=5) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[5] is control_ts for DL
-PDCH[5] is first common for DL
+PDCH(bts=0,trx=0,ts=5) is control_ts for DL
+PDCH(bts=0,trx=0,ts=5) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[5] is used for DL
-PDCH[5] is control_ts for DL
-PDCH[5] is first common for DL
+PDCH(bts=0,trx=0,ts=5) is control_ts for DL
+PDCH(bts=0,trx=0,ts=5) is first common for DL
 PDCH[5] is used for UL
 PDCH[6] is used for UL
 PDCH[7] is used for UL
-PDCH[5] is control_ts for UL
-PDCH[5] is first common for UL
+PDCH(bts=0,trx=0,ts=5) is control_ts for UL
+PDCH(bts=0,trx=0,ts=5) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[5] is control_ts for DL
-PDCH[5] is first common for DL
+PDCH(bts=0,trx=0,ts=5) is control_ts for DL
+PDCH(bts=0,trx=0,ts=5) is first common for DL
 Testing jolly example
 PDCH[1] is used for UL
 PDCH[2] is used for UL
 PDCH[3] is used for UL
 PDCH[4] is used for UL
-PDCH[1] is control_ts for UL
-PDCH[1] is first common for UL
+PDCH(bts=0,trx=0,ts=1) is control_ts for UL
+PDCH(bts=0,trx=0,ts=1) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
 PDCH[4] is used for DL
-PDCH[1] is control_ts for DL
-PDCH[1] is first common for DL
+PDCH(bts=0,trx=0,ts=1) is control_ts for DL
+PDCH(bts=0,trx=0,ts=1) is first common for DL
 Going to test multislot assignment MS_CLASS=17
 Testing UL then DL assignment.
 PDCH[5] is used for UL
-PDCH[5] is control_ts for UL
-PDCH[5] is first common for UL
+PDCH(bts=0,trx=0,ts=5) is control_ts for UL
+PDCH(bts=0,trx=0,ts=5) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[5] is control_ts for DL
-PDCH[5] is first common for DL
+PDCH(bts=0,trx=0,ts=5) is control_ts for DL
+PDCH(bts=0,trx=0,ts=5) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[5] is used for DL
-PDCH[5] is control_ts for DL
-PDCH[5] is first common for DL
+PDCH(bts=0,trx=0,ts=5) is control_ts for DL
+PDCH(bts=0,trx=0,ts=5) is first common for DL
 PDCH[5] is used for UL
 PDCH[6] is used for UL
 PDCH[7] is used for UL
-PDCH[5] is control_ts for UL
-PDCH[5] is first common for UL
+PDCH(bts=0,trx=0,ts=5) is control_ts for UL
+PDCH(bts=0,trx=0,ts=5) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[5] is control_ts for DL
-PDCH[5] is first common for DL
+PDCH(bts=0,trx=0,ts=5) is control_ts for DL
+PDCH(bts=0,trx=0,ts=5) is first common for DL
 Testing jolly example
 PDCH[1] is used for UL
 PDCH[2] is used for UL
 PDCH[3] is used for UL
 PDCH[4] is used for UL
-PDCH[1] is control_ts for UL
-PDCH[1] is first common for UL
+PDCH(bts=0,trx=0,ts=1) is control_ts for UL
+PDCH(bts=0,trx=0,ts=1) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
 PDCH[4] is used for DL
-PDCH[1] is control_ts for DL
-PDCH[1] is first common for DL
+PDCH(bts=0,trx=0,ts=1) is control_ts for DL
+PDCH(bts=0,trx=0,ts=1) is first common for DL
 Going to test multislot assignment MS_CLASS=18
 Testing UL then DL assignment.
 PDCH[5] is used for UL
-PDCH[5] is control_ts for UL
-PDCH[5] is first common for UL
+PDCH(bts=0,trx=0,ts=5) is control_ts for UL
+PDCH(bts=0,trx=0,ts=5) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[5] is control_ts for DL
-PDCH[5] is first common for DL
+PDCH(bts=0,trx=0,ts=5) is control_ts for DL
+PDCH(bts=0,trx=0,ts=5) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[5] is used for DL
-PDCH[5] is control_ts for DL
-PDCH[5] is first common for DL
+PDCH(bts=0,trx=0,ts=5) is control_ts for DL
+PDCH(bts=0,trx=0,ts=5) is first common for DL
 PDCH[5] is used for UL
 PDCH[6] is used for UL
 PDCH[7] is used for UL
-PDCH[5] is control_ts for UL
-PDCH[5] is first common for UL
+PDCH(bts=0,trx=0,ts=5) is control_ts for UL
+PDCH(bts=0,trx=0,ts=5) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[5] is control_ts for DL
-PDCH[5] is first common for DL
+PDCH(bts=0,trx=0,ts=5) is control_ts for DL
+PDCH(bts=0,trx=0,ts=5) is first common for DL
 Testing jolly example
 PDCH[1] is used for UL
 PDCH[2] is used for UL
 PDCH[3] is used for UL
 PDCH[4] is used for UL
-PDCH[1] is control_ts for UL
-PDCH[1] is first common for UL
+PDCH(bts=0,trx=0,ts=1) is control_ts for UL
+PDCH(bts=0,trx=0,ts=1) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
 PDCH[4] is used for DL
-PDCH[1] is control_ts for DL
-PDCH[1] is first common for DL
+PDCH(bts=0,trx=0,ts=1) is control_ts for DL
+PDCH(bts=0,trx=0,ts=1) is first common for DL
 Going to test multislot assignment MS_CLASS=19
 Testing UL then DL assignment.
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 PDCH[6] is used for UL
 PDCH[7] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing jolly example
 PDCH[3] is used for UL
-PDCH[3] is control_ts for UL
-PDCH[3] is first common for UL
+PDCH(bts=0,trx=0,ts=3) is control_ts for UL
+PDCH(bts=0,trx=0,ts=3) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
 PDCH[4] is used for DL
-PDCH[3] is control_ts for DL
-PDCH[3] is first common for DL
+PDCH(bts=0,trx=0,ts=3) is control_ts for DL
+PDCH(bts=0,trx=0,ts=3) is first common for DL
 Going to test multislot assignment MS_CLASS=20
 Testing UL then DL assignment.
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 PDCH[6] is used for UL
 PDCH[7] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing jolly example
 PDCH[3] is used for UL
-PDCH[3] is control_ts for UL
-PDCH[3] is first common for UL
+PDCH(bts=0,trx=0,ts=3) is control_ts for UL
+PDCH(bts=0,trx=0,ts=3) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
 PDCH[4] is used for DL
-PDCH[3] is control_ts for DL
-PDCH[3] is first common for DL
+PDCH(bts=0,trx=0,ts=3) is control_ts for DL
+PDCH(bts=0,trx=0,ts=3) is first common for DL
 Going to test multislot assignment MS_CLASS=21
 Testing UL then DL assignment.
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 PDCH[6] is used for UL
 PDCH[7] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing jolly example
 PDCH[3] is used for UL
-PDCH[3] is control_ts for UL
-PDCH[3] is first common for UL
+PDCH(bts=0,trx=0,ts=3) is control_ts for UL
+PDCH(bts=0,trx=0,ts=3) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
 PDCH[4] is used for DL
-PDCH[3] is control_ts for DL
-PDCH[3] is first common for DL
+PDCH(bts=0,trx=0,ts=3) is control_ts for DL
+PDCH(bts=0,trx=0,ts=3) is first common for DL
 Going to test multislot assignment MS_CLASS=22
 Testing UL then DL assignment.
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 PDCH[6] is used for UL
 PDCH[7] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing jolly example
 PDCH[3] is used for UL
-PDCH[3] is control_ts for UL
-PDCH[3] is first common for UL
+PDCH(bts=0,trx=0,ts=3) is control_ts for UL
+PDCH(bts=0,trx=0,ts=3) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
 PDCH[4] is used for DL
-PDCH[3] is control_ts for DL
-PDCH[3] is first common for DL
+PDCH(bts=0,trx=0,ts=3) is control_ts for DL
+PDCH(bts=0,trx=0,ts=3) is first common for DL
 Going to test multislot assignment MS_CLASS=23
 Testing UL then DL assignment.
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 PDCH[6] is used for UL
 PDCH[7] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing jolly example
 PDCH[3] is used for UL
-PDCH[3] is control_ts for UL
-PDCH[3] is first common for UL
+PDCH(bts=0,trx=0,ts=3) is control_ts for UL
+PDCH(bts=0,trx=0,ts=3) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
 PDCH[4] is used for DL
-PDCH[3] is control_ts for DL
-PDCH[3] is first common for DL
+PDCH(bts=0,trx=0,ts=3) is control_ts for DL
+PDCH(bts=0,trx=0,ts=3) is first common for DL
 Going to test multislot assignment MS_CLASS=24
 Testing UL then DL assignment.
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 PDCH[6] is used for UL
 PDCH[7] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing jolly example
 PDCH[3] is used for UL
-PDCH[3] is control_ts for UL
-PDCH[3] is first common for UL
+PDCH(bts=0,trx=0,ts=3) is control_ts for UL
+PDCH(bts=0,trx=0,ts=3) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
 PDCH[4] is used for DL
-PDCH[3] is control_ts for DL
-PDCH[3] is first common for DL
+PDCH(bts=0,trx=0,ts=3) is control_ts for DL
+PDCH(bts=0,trx=0,ts=3) is first common for DL
 Going to test multislot assignment MS_CLASS=25
 Testing UL then DL assignment.
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 PDCH[6] is used for UL
 PDCH[7] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing jolly example
 PDCH[3] is used for UL
-PDCH[3] is control_ts for UL
-PDCH[3] is first common for UL
+PDCH(bts=0,trx=0,ts=3) is control_ts for UL
+PDCH(bts=0,trx=0,ts=3) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
 PDCH[4] is used for DL
-PDCH[3] is control_ts for DL
-PDCH[3] is first common for DL
+PDCH(bts=0,trx=0,ts=3) is control_ts for DL
+PDCH(bts=0,trx=0,ts=3) is first common for DL
 Going to test multislot assignment MS_CLASS=26
 Testing UL then DL assignment.
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 PDCH[6] is used for UL
 PDCH[7] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing jolly example
 PDCH[3] is used for UL
-PDCH[3] is control_ts for UL
-PDCH[3] is first common for UL
+PDCH(bts=0,trx=0,ts=3) is control_ts for UL
+PDCH(bts=0,trx=0,ts=3) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
 PDCH[4] is used for DL
-PDCH[3] is control_ts for DL
-PDCH[3] is first common for DL
+PDCH(bts=0,trx=0,ts=3) is control_ts for DL
+PDCH(bts=0,trx=0,ts=3) is first common for DL
 Going to test multislot assignment MS_CLASS=27
 Testing UL then DL assignment.
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 PDCH[6] is used for UL
 PDCH[7] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing jolly example
 PDCH[3] is used for UL
-PDCH[3] is control_ts for UL
-PDCH[3] is first common for UL
+PDCH(bts=0,trx=0,ts=3) is control_ts for UL
+PDCH(bts=0,trx=0,ts=3) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
 PDCH[4] is used for DL
-PDCH[3] is control_ts for DL
-PDCH[3] is first common for DL
+PDCH(bts=0,trx=0,ts=3) is control_ts for DL
+PDCH(bts=0,trx=0,ts=3) is first common for DL
 Going to test multislot assignment MS_CLASS=28
 Testing UL then DL assignment.
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 PDCH[6] is used for UL
 PDCH[7] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing jolly example
 PDCH[3] is used for UL
-PDCH[3] is control_ts for UL
-PDCH[3] is first common for UL
+PDCH(bts=0,trx=0,ts=3) is control_ts for UL
+PDCH(bts=0,trx=0,ts=3) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
 PDCH[4] is used for DL
-PDCH[3] is control_ts for DL
-PDCH[3] is first common for DL
+PDCH(bts=0,trx=0,ts=3) is control_ts for DL
+PDCH(bts=0,trx=0,ts=3) is first common for DL
 Going to test multislot assignment MS_CLASS=29
 Testing UL then DL assignment.
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 PDCH[6] is used for UL
 PDCH[7] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing jolly example
 PDCH[3] is used for UL
-PDCH[3] is control_ts for UL
-PDCH[3] is first common for UL
+PDCH(bts=0,trx=0,ts=3) is control_ts for UL
+PDCH(bts=0,trx=0,ts=3) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
 PDCH[4] is used for DL
-PDCH[3] is control_ts for DL
-PDCH[3] is first common for DL
+PDCH(bts=0,trx=0,ts=3) is control_ts for DL
+PDCH(bts=0,trx=0,ts=3) is first common for DL
 Going to test multislot assignment MS_CLASS=30
 Testing UL then DL assignment.
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing jolly example
 PDCH[3] is used for UL
-PDCH[3] is control_ts for UL
-PDCH[3] is first common for UL
+PDCH(bts=0,trx=0,ts=3) is control_ts for UL
+PDCH(bts=0,trx=0,ts=3) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
 PDCH[4] is used for DL
-PDCH[3] is control_ts for DL
-PDCH[3] is first common for DL
+PDCH(bts=0,trx=0,ts=3) is control_ts for DL
+PDCH(bts=0,trx=0,ts=3) is first common for DL
 Going to test multislot assignment MS_CLASS=31
 Testing UL then DL assignment.
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 PDCH[6] is used for UL
 PDCH[7] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing jolly example
 PDCH[3] is used for UL
 PDCH[4] is used for UL
-PDCH[3] is control_ts for UL
-PDCH[3] is first common for UL
+PDCH(bts=0,trx=0,ts=3) is control_ts for UL
+PDCH(bts=0,trx=0,ts=3) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
 PDCH[4] is used for DL
-PDCH[3] is control_ts for DL
-PDCH[3] is first common for DL
+PDCH(bts=0,trx=0,ts=3) is control_ts for DL
+PDCH(bts=0,trx=0,ts=3) is first common for DL
 Going to test multislot assignment MS_CLASS=32
 Testing UL then DL assignment.
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 PDCH[6] is used for UL
 PDCH[7] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing jolly example
 PDCH[3] is used for UL
 PDCH[4] is used for UL
-PDCH[3] is control_ts for UL
-PDCH[3] is first common for UL
+PDCH(bts=0,trx=0,ts=3) is control_ts for UL
+PDCH(bts=0,trx=0,ts=3) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
 PDCH[4] is used for DL
-PDCH[3] is control_ts for DL
-PDCH[3] is first common for DL
+PDCH(bts=0,trx=0,ts=3) is control_ts for DL
+PDCH(bts=0,trx=0,ts=3) is first common for DL
 Going to test multislot assignment MS_CLASS=33
 Testing UL then DL assignment.
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 PDCH[6] is used for UL
 PDCH[7] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing jolly example
 PDCH[3] is used for UL
 PDCH[4] is used for UL
-PDCH[3] is control_ts for UL
-PDCH[3] is first common for UL
+PDCH(bts=0,trx=0,ts=3) is control_ts for UL
+PDCH(bts=0,trx=0,ts=3) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
 PDCH[4] is used for DL
-PDCH[3] is control_ts for DL
-PDCH[3] is first common for DL
+PDCH(bts=0,trx=0,ts=3) is control_ts for DL
+PDCH(bts=0,trx=0,ts=3) is first common for DL
 Going to test multislot assignment MS_CLASS=34
 Testing UL then DL assignment.
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 PDCH[6] is used for UL
 PDCH[7] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing jolly example
 PDCH[3] is used for UL
 PDCH[4] is used for UL
-PDCH[3] is control_ts for UL
-PDCH[3] is first common for UL
+PDCH(bts=0,trx=0,ts=3) is control_ts for UL
+PDCH(bts=0,trx=0,ts=3) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
 PDCH[4] is used for DL
-PDCH[3] is control_ts for DL
-PDCH[3] is first common for DL
+PDCH(bts=0,trx=0,ts=3) is control_ts for DL
+PDCH(bts=0,trx=0,ts=3) is first common for DL
 Going to test multislot assignment MS_CLASS=35
 Testing UL then DL assignment.
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing jolly example
 PDCH[3] is used for UL
-PDCH[3] is control_ts for UL
-PDCH[3] is first common for UL
+PDCH(bts=0,trx=0,ts=3) is control_ts for UL
+PDCH(bts=0,trx=0,ts=3) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
 PDCH[4] is used for DL
-PDCH[3] is control_ts for DL
-PDCH[3] is first common for DL
+PDCH(bts=0,trx=0,ts=3) is control_ts for DL
+PDCH(bts=0,trx=0,ts=3) is first common for DL
 Going to test multislot assignment MS_CLASS=36
 Testing UL then DL assignment.
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 PDCH[6] is used for UL
 PDCH[7] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing jolly example
 PDCH[3] is used for UL
 PDCH[4] is used for UL
-PDCH[3] is control_ts for UL
-PDCH[3] is first common for UL
+PDCH(bts=0,trx=0,ts=3) is control_ts for UL
+PDCH(bts=0,trx=0,ts=3) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
 PDCH[4] is used for DL
-PDCH[3] is control_ts for DL
-PDCH[3] is first common for DL
+PDCH(bts=0,trx=0,ts=3) is control_ts for DL
+PDCH(bts=0,trx=0,ts=3) is first common for DL
 Going to test multislot assignment MS_CLASS=37
 Testing UL then DL assignment.
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 PDCH[6] is used for UL
 PDCH[7] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing jolly example
 PDCH[3] is used for UL
 PDCH[4] is used for UL
-PDCH[3] is control_ts for UL
-PDCH[3] is first common for UL
+PDCH(bts=0,trx=0,ts=3) is control_ts for UL
+PDCH(bts=0,trx=0,ts=3) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
 PDCH[4] is used for DL
-PDCH[3] is control_ts for DL
-PDCH[3] is first common for DL
+PDCH(bts=0,trx=0,ts=3) is control_ts for DL
+PDCH(bts=0,trx=0,ts=3) is first common for DL
 Going to test multislot assignment MS_CLASS=38
 Testing UL then DL assignment.
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 PDCH[6] is used for UL
 PDCH[7] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing jolly example
 PDCH[3] is used for UL
 PDCH[4] is used for UL
-PDCH[3] is control_ts for UL
-PDCH[3] is first common for UL
+PDCH(bts=0,trx=0,ts=3) is control_ts for UL
+PDCH(bts=0,trx=0,ts=3) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
 PDCH[4] is used for DL
-PDCH[3] is control_ts for DL
-PDCH[3] is first common for DL
+PDCH(bts=0,trx=0,ts=3) is control_ts for DL
+PDCH(bts=0,trx=0,ts=3) is first common for DL
 Going to test multislot assignment MS_CLASS=39
 Testing UL then DL assignment.
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 PDCH[6] is used for UL
 PDCH[7] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing jolly example
 PDCH[3] is used for UL
 PDCH[4] is used for UL
-PDCH[3] is control_ts for UL
-PDCH[3] is first common for UL
+PDCH(bts=0,trx=0,ts=3) is control_ts for UL
+PDCH(bts=0,trx=0,ts=3) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
 PDCH[4] is used for DL
-PDCH[3] is control_ts for DL
-PDCH[3] is first common for DL
+PDCH(bts=0,trx=0,ts=3) is control_ts for DL
+PDCH(bts=0,trx=0,ts=3) is first common for DL
 Going to test multislot assignment MS_CLASS=40
 Testing UL then DL assignment.
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing jolly example
 PDCH[3] is used for UL
-PDCH[3] is control_ts for UL
-PDCH[3] is first common for UL
+PDCH(bts=0,trx=0,ts=3) is control_ts for UL
+PDCH(bts=0,trx=0,ts=3) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
 PDCH[4] is used for DL
-PDCH[3] is control_ts for DL
-PDCH[3] is first common for DL
+PDCH(bts=0,trx=0,ts=3) is control_ts for DL
+PDCH(bts=0,trx=0,ts=3) is first common for DL
 Going to test multislot assignment MS_CLASS=41
 Testing UL then DL assignment.
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 PDCH[6] is used for UL
 PDCH[7] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing jolly example
 PDCH[3] is used for UL
 PDCH[4] is used for UL
-PDCH[3] is control_ts for UL
-PDCH[3] is first common for UL
+PDCH(bts=0,trx=0,ts=3) is control_ts for UL
+PDCH(bts=0,trx=0,ts=3) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
 PDCH[4] is used for DL
-PDCH[3] is control_ts for DL
-PDCH[3] is first common for DL
+PDCH(bts=0,trx=0,ts=3) is control_ts for DL
+PDCH(bts=0,trx=0,ts=3) is first common for DL
 Going to test multislot assignment MS_CLASS=42
 Testing UL then DL assignment.
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 PDCH[6] is used for UL
 PDCH[7] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing jolly example
 PDCH[3] is used for UL
 PDCH[4] is used for UL
-PDCH[3] is control_ts for UL
-PDCH[3] is first common for UL
+PDCH(bts=0,trx=0,ts=3) is control_ts for UL
+PDCH(bts=0,trx=0,ts=3) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
 PDCH[4] is used for DL
-PDCH[3] is control_ts for DL
-PDCH[3] is first common for DL
+PDCH(bts=0,trx=0,ts=3) is control_ts for DL
+PDCH(bts=0,trx=0,ts=3) is first common for DL
 Going to test multislot assignment MS_CLASS=43
 Testing UL then DL assignment.
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 PDCH[6] is used for UL
 PDCH[7] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing jolly example
 PDCH[3] is used for UL
 PDCH[4] is used for UL
-PDCH[3] is control_ts for UL
-PDCH[3] is first common for UL
+PDCH(bts=0,trx=0,ts=3) is control_ts for UL
+PDCH(bts=0,trx=0,ts=3) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
 PDCH[4] is used for DL
-PDCH[3] is control_ts for DL
-PDCH[3] is first common for DL
+PDCH(bts=0,trx=0,ts=3) is control_ts for DL
+PDCH(bts=0,trx=0,ts=3) is first common for DL
 Going to test multislot assignment MS_CLASS=44
 Testing UL then DL assignment.
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 PDCH[6] is used for UL
 PDCH[7] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing jolly example
 PDCH[3] is used for UL
 PDCH[4] is used for UL
-PDCH[3] is control_ts for UL
-PDCH[3] is first common for UL
+PDCH(bts=0,trx=0,ts=3) is control_ts for UL
+PDCH(bts=0,trx=0,ts=3) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
 PDCH[4] is used for DL
-PDCH[3] is control_ts for DL
-PDCH[3] is first common for DL
+PDCH(bts=0,trx=0,ts=3) is control_ts for DL
+PDCH(bts=0,trx=0,ts=3) is first common for DL
 Going to test multislot assignment MS_CLASS=45
 Testing UL then DL assignment.
 PDCH[6] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing DL then UL assignment followed by update
 PDCH[6] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 PDCH[6] is used for UL
 PDCH[7] is used for UL
-PDCH[6] is control_ts for UL
-PDCH[6] is first common for UL
+PDCH(bts=0,trx=0,ts=6) is control_ts for UL
+PDCH(bts=0,trx=0,ts=6) is first common for UL
 PDCH[5] is used for DL
 PDCH[6] is used for DL
 PDCH[7] is used for DL
-PDCH[6] is control_ts for DL
-PDCH[6] is first common for DL
+PDCH(bts=0,trx=0,ts=6) is control_ts for DL
+PDCH(bts=0,trx=0,ts=6) is first common for DL
 Testing jolly example
 PDCH[3] is used for UL
 PDCH[4] is used for UL
-PDCH[3] is control_ts for UL
-PDCH[3] is first common for UL
+PDCH(bts=0,trx=0,ts=3) is control_ts for UL
+PDCH(bts=0,trx=0,ts=3) is first common for UL
 PDCH[1] is used for DL
 PDCH[2] is used for DL
 PDCH[3] is used for DL
 PDCH[4] is used for DL
-PDCH[3] is control_ts for DL
-PDCH[3] is first common for DL
+PDCH(bts=0,trx=0,ts=3) is control_ts for DL
+PDCH(bts=0,trx=0,ts=3) is first common for DL
 Mass test: TS0(xxxxxxxO)TS7 MS_Class=0
 Mass test: TS0(xxxxxxxO)TS7 MS_Class=1
 Mass test: TS0(xxxxxxxO)TS7 MS_Class=2
diff --git a/tests/tbf/TbfTest.cpp b/tests/tbf/TbfTest.cpp
index 47566f8..7067201 100644
--- a/tests/tbf/TbfTest.cpp
+++ b/tests/tbf/TbfTest.cpp
@@ -235,11 +235,11 @@
 }
 
 static void request_dl_rlc_block(struct gprs_rlcmac_bts *bts,
-	uint8_t trx_no, uint8_t ts_no,
+	struct gprs_rlcmac_pdch *pdch,
 	uint32_t *fn, uint8_t *block_nr = NULL)
 {
 	uint8_t bn = fn2bn(*fn);
-	gprs_rlcmac_rcv_rts_block(bts, trx_no, ts_no, *fn, bn);
+	gprs_rlcmac_rcv_rts_block(bts, pdch->trx->trx_no, pdch->ts_no, *fn, bn);
 	*fn = fn_add_blocks(*fn, 1);
 	bn += 1;
 	if (block_nr)
@@ -249,8 +249,7 @@
 static void request_dl_rlc_block(struct gprs_rlcmac_tbf *tbf,
 	uint32_t *fn, uint8_t *block_nr = NULL)
 {
-	request_dl_rlc_block(tbf->bts, tbf->trx->trx_no,
-		tbf->control_ts, fn, block_nr);
+	request_dl_rlc_block(tbf->bts, tbf->control_ts, fn, block_nr);
 }
 
 enum test_tbf_final_ack_mode {
@@ -629,19 +628,17 @@
 }
 
 static gprs_rlcmac_ul_tbf *establish_ul_tbf_single_phase(struct gprs_rlcmac_bts *bts,
-	uint8_t ts_no, uint32_t tlli, uint32_t *fn, uint16_t qta)
+	struct gprs_rlcmac_pdch *pdch, uint32_t tlli, uint32_t *fn, uint16_t qta)
 {
 	GprsMs *ms;
 	int tfi = 0;
 	gprs_rlcmac_ul_tbf *ul_tbf;
-	uint8_t trx_no = 0;
-	struct gprs_rlcmac_pdch *pdch;
 
-	tfi = bts_tfi_find_free(bts, GPRS_RLCMAC_UL_TBF, &trx_no, -1);
+	tfi = bts_tfi_find_free(bts, GPRS_RLCMAC_UL_TBF, &pdch->trx->trx_no, -1);
 
 	bts_handle_rach(bts, 0x03, *fn, qta);
 
-	ul_tbf = bts_ul_tbf_by_tfi(bts, tfi, trx_no, ts_no);
+	ul_tbf = bts_ul_tbf_by_tfi(bts, tfi, pdch->trx->trx_no, pdch->ts_no);
 	OSMO_ASSERT(ul_tbf != NULL);
 
 	OSMO_ASSERT(ul_tbf->ta() == qta / 4);
@@ -654,7 +651,6 @@
 		uint8_t(tlli >> 8), uint8_t(tlli), /* TLLI */
 	};
 
-	pdch = &bts->trx[trx_no].pdch[ts_no];
 	pdch->rcv_block(&data_msg[0], sizeof(data_msg), *fn, &meas);
 
 	ms = bts_ms_by_tlli(bts, tlli, GSM_RESERVED_TMSI);
@@ -671,13 +667,12 @@
 	pdch_ulc_expire_fn(pdch->ulc, fn);
 }
 
-static void send_ul_mac_block(struct gprs_rlcmac_bts *bts, unsigned trx_no, unsigned ts_no,
+static void send_ul_mac_block(struct gprs_rlcmac_bts *bts, struct gprs_rlcmac_pdch *pdch,
 	RlcMacUplink_t *ulreq, unsigned fn)
 {
 	bitvec *rlc_block;
 	uint8_t buf[64];
 	int num_bytes;
-	struct gprs_rlcmac_pdch *pdch;
 
 	rlc_block = bitvec_alloc(23, tall_pcu_ctx);
 
@@ -686,14 +681,12 @@
 	OSMO_ASSERT(size_t(num_bytes) < sizeof(buf));
 	bitvec_free(rlc_block);
 
-	pdch = &bts->trx[trx_no].pdch[ts_no];
 	send_ul_mac_block_buf(bts, pdch, fn, &buf[0], num_bytes);
 }
 
 
-static uint32_t get_poll_fn(struct gprs_rlcmac_tbf *tbf, uint8_t poll_ts)
+static uint32_t get_poll_fn(struct gprs_rlcmac_tbf *tbf, struct gprs_rlcmac_pdch *pdch)
 {
-	struct gprs_rlcmac_pdch *pdch = &tbf->trx->pdch[poll_ts];
 	struct pdch_ulc *ulc = pdch->ulc;
 	struct rb_node *node;
 	struct pdch_ulc_node *item;
@@ -716,33 +709,29 @@
 
 	ctrl_ack->PayloadType = GPRS_RLCMAC_CONTROL_BLOCK;
 	ctrl_ack->TLLI = tbf->tlli();
-	send_ul_mac_block(tbf->bts, tbf->trx->trx_no, tbf->control_ts,
+	send_ul_mac_block(tbf->bts, tbf->control_ts,
 		&ulreq, get_poll_fn(tbf, tbf->control_ts));
 }
 
-static void send_empty_block(gprs_rlcmac_tbf *tbf, unsigned ts_no, unsigned fn)
+static void send_empty_block(gprs_rlcmac_tbf *tbf, struct gprs_rlcmac_pdch *pdch, unsigned fn)
 {
-	struct gprs_rlcmac_pdch *pdch;
-	pdch = &tbf->bts->trx[tbf->trx->trx_no].pdch[ts_no];
 	send_ul_mac_block_buf(tbf->bts, pdch, fn, NULL, 0);
 }
 
 static gprs_rlcmac_ul_tbf *puan_urbb_len_issue(struct gprs_rlcmac_bts *bts,
-	uint8_t ts_no, uint32_t tlli, uint32_t *fn, uint16_t qta,
+	struct gprs_rlcmac_pdch *pdch, uint32_t tlli, uint32_t *fn, uint16_t qta,
 	uint8_t ms_class, uint8_t egprs_ms_class)
 {
 	GprsMs *ms;
 	uint32_t rach_fn = *fn - 51;
 	uint32_t sba_fn = *fn + 52;
-	uint8_t trx_no = 0;
 	int tfi = 0;
 	gprs_rlcmac_ul_tbf *ul_tbf;
-	struct gprs_rlcmac_pdch *pdch;
 	RlcMacUplink_t ulreq = {0};
 	struct gprs_rlc_ul_header_egprs_3 *egprs3  = NULL;
 
 	/* needed to set last_rts_fn in the PDCH object */
-	request_dl_rlc_block(bts, trx_no, ts_no, fn);
+	request_dl_rlc_block(bts, pdch, fn);
 
 	/*
 	 * simulate RACH, this sends an Immediate
@@ -751,7 +740,7 @@
 	bts_handle_rach(bts, 0x73, rach_fn, qta);
 
 	/* get next free TFI */
-	tfi = bts_tfi_find_free(bts, GPRS_RLCMAC_UL_TBF, &trx_no, -1);
+	tfi = bts_tfi_find_free(bts, GPRS_RLCMAC_UL_TBF, &pdch->trx->trx_no, -1);
 
 	/* fake a resource request */
 	ulreq.u.MESSAGE_TYPE = MT_PACKET_RESOURCE_REQUEST;
@@ -779,10 +768,10 @@
 			Multislot_capability.EGPRS_multislot_class = ms_class;
 	}
 
-	send_ul_mac_block(bts, trx_no, ts_no, &ulreq, sba_fn);
+	send_ul_mac_block(bts, pdch, &ulreq, sba_fn);
 
 	/* check the TBF */
-	ul_tbf = bts_ul_tbf_by_tfi(bts, tfi, trx_no, ts_no);
+	ul_tbf = bts_ul_tbf_by_tfi(bts, tfi, pdch->trx->trx_no, pdch->ts_no);
 	OSMO_ASSERT(ul_tbf);
 	OSMO_ASSERT(ul_tbf->ta() == qta / 4);
 
@@ -801,7 +790,6 @@
 		1, /* BSN:7, E:1 */
 	};
 
-	pdch = &bts->trx[trx_no].pdch[ts_no];
 	pdch->rcv_block(&data_msg[0], 23, *fn, &meas);
 
 	ms = bts_ms_by_tlli(bts, tlli, GSM_RESERVED_TMSI);
@@ -874,21 +862,19 @@
 }
 
 static gprs_rlcmac_ul_tbf *establish_ul_tbf_two_phase_spb(struct gprs_rlcmac_bts *bts,
-	uint8_t ts_no, uint32_t tlli, uint32_t *fn, uint16_t qta,
+	struct gprs_rlcmac_pdch *pdch, uint32_t tlli, uint32_t *fn, uint16_t qta,
 	uint8_t ms_class, uint8_t egprs_ms_class)
 {
 	GprsMs *ms;
 	uint32_t rach_fn = *fn - 51;
 	uint32_t sba_fn = *fn + 52;
-	uint8_t trx_no = 0;
 	int tfi = 0, i = 0;
 	gprs_rlcmac_ul_tbf *ul_tbf;
-	struct gprs_rlcmac_pdch *pdch;
 	RlcMacUplink_t ulreq = {0};
 	struct gprs_rlc_ul_header_egprs_3 *egprs3  = NULL;
 
 	/* needed to set last_rts_fn in the PDCH object */
-	request_dl_rlc_block(bts, trx_no, ts_no, fn);
+	request_dl_rlc_block(bts, pdch, fn);
 
 	/*
 	 * simulate RACH, this sends an Immediate
@@ -897,7 +883,7 @@
 	bts_handle_rach(bts, 0x73, rach_fn, qta);
 
 	/* get next free TFI */
-	tfi = bts_tfi_find_free(bts, GPRS_RLCMAC_UL_TBF, &trx_no, -1);
+	tfi = bts_tfi_find_free(bts, GPRS_RLCMAC_UL_TBF, &pdch->trx->trx_no, -1);
 
 	/* fake a resource request */
 	ulreq.u.MESSAGE_TYPE = MT_PACKET_RESOURCE_REQUEST;
@@ -925,10 +911,10 @@
 			Multislot_capability.EGPRS_multislot_class = ms_class;
 	}
 
-	send_ul_mac_block(bts, trx_no, ts_no, &ulreq, sba_fn);
+	send_ul_mac_block(bts, pdch, &ulreq, sba_fn);
 
 	/* check the TBF */
-	ul_tbf = bts_ul_tbf_by_tfi(bts, tfi, trx_no, ts_no);
+	ul_tbf = bts_ul_tbf_by_tfi(bts, tfi, pdch->trx->trx_no, pdch->ts_no);
 	OSMO_ASSERT(ul_tbf != NULL);
 	OSMO_ASSERT(ul_tbf->ta() == qta / 4);
 
@@ -948,7 +934,6 @@
 		uint8_t(1), /* BSN:7, E:1 */
 	};
 
-	pdch = &bts->trx[trx_no].pdch[ts_no];
 	pdch->rcv_block(&data_msg[0], 23, *fn, &meas);
 
 	ms = bts_ms_by_tlli(bts, tlli, GSM_RESERVED_TMSI);
@@ -1309,18 +1294,17 @@
 }
 
 static gprs_rlcmac_ul_tbf *establish_ul_tbf(struct gprs_rlcmac_bts *bts,
-	uint8_t ts_no, uint32_t tlli, uint32_t *fn, uint16_t qta,
+	struct gprs_rlcmac_pdch *pdch, uint32_t tlli, uint32_t *fn, uint16_t qta,
 	uint8_t ms_class, uint8_t egprs_ms_class)
 {
 	uint32_t rach_fn = *fn - 51;
 	uint32_t sba_fn = *fn + 52;
-	uint8_t trx_no = 0;
 	int tfi = 0;
 	gprs_rlcmac_ul_tbf *ul_tbf;
 	RlcMacUplink_t ulreq = {0};
 
 	/* needed to set last_rts_fn in the PDCH object */
-	request_dl_rlc_block(bts, trx_no, ts_no, fn);
+	request_dl_rlc_block(bts, pdch, fn);
 
 	/*
 	 * simulate RACH, this sends an Immediate
@@ -1329,7 +1313,7 @@
 	bts_handle_rach(bts, 0x73, rach_fn, qta);
 
 	/* get next free TFI */
-	tfi = bts_tfi_find_free(bts, GPRS_RLCMAC_UL_TBF, &trx_no, -1);
+	tfi = bts_tfi_find_free(bts, GPRS_RLCMAC_UL_TBF, &pdch->trx->trx_no, -1);
 
 	/* fake a resource request */
 	ulreq.u.MESSAGE_TYPE = MT_PACKET_RESOURCE_REQUEST;
@@ -1356,10 +1340,10 @@
 			MS_RA_capability_value[0].u.Content.
 			Multislot_capability.EGPRS_multislot_class = ms_class;
 	}
-	send_ul_mac_block(bts, trx_no, ts_no, &ulreq, sba_fn);
+	send_ul_mac_block(bts, pdch, &ulreq, sba_fn);
 
 	/* check the TBF */
-	ul_tbf = bts_ul_tbf_by_tfi(bts, tfi, trx_no, ts_no);
+	ul_tbf = bts_ul_tbf_by_tfi(bts, tfi, pdch->trx->trx_no, pdch->ts_no);
 	/* send packet uplink assignment */
 	*fn = sba_fn;
 	request_dl_rlc_block(ul_tbf, fn);
@@ -1373,15 +1357,13 @@
 }
 
 static gprs_rlcmac_ul_tbf *establish_ul_tbf_two_phase_puan_URBB_no_length(struct gprs_rlcmac_bts *bts,
-	uint8_t ts_no, uint32_t tlli, uint32_t *fn, uint16_t qta,
+	struct gprs_rlcmac_pdch *pdch, uint32_t tlli, uint32_t *fn, uint16_t qta,
 	uint8_t ms_class, uint8_t egprs_ms_class, gprs_rlcmac_ul_tbf *ul_tbf)
 {
 	OSMO_ASSERT(ul_tbf);
 	OSMO_ASSERT(ul_tbf->ta() == qta / 4);
 	GprsMs *ms;
-	uint8_t trx_no = 0;
 	int tfi = 0;
-	struct gprs_rlcmac_pdch *pdch = &bts->trx[trx_no].pdch[ts_no];
 
 	/* send fake data with cv=0*/
 	struct gprs_rlc_ul_header_egprs_3 *hdr3 = NULL;
@@ -1436,7 +1418,6 @@
 	data[6] = 0x2b;
 	data[7] = 0x2b;
 
-	pdch = &bts->trx[trx_no].pdch[ts_no];
 	pdch->rcv_block(&data[0], sizeof(data), *fn, &meas);
 
 	request_dl_rlc_block(ul_tbf, fn);
@@ -1453,15 +1434,13 @@
 }
 
 static gprs_rlcmac_ul_tbf *establish_ul_tbf_two_phase_puan_URBB_with_length(struct gprs_rlcmac_bts *bts,
-	uint8_t ts_no, uint32_t tlli, uint32_t *fn, uint16_t qta,
+	struct gprs_rlcmac_pdch *pdch, uint32_t tlli, uint32_t *fn, uint16_t qta,
 	uint8_t ms_class, uint8_t egprs_ms_class, gprs_rlcmac_ul_tbf *ul_tbf)
 {
 	OSMO_ASSERT(ul_tbf);
 	OSMO_ASSERT(ul_tbf->ta() == qta / 4);
 	GprsMs *ms;
-	uint8_t trx_no = 0;
 	int tfi = 0;
-	struct gprs_rlcmac_pdch *pdch = &bts->trx[trx_no].pdch[ts_no];
 
 	check_tbf(ul_tbf);
 	/* send fake data with cv=0*/
@@ -1518,7 +1497,6 @@
 	data[6] = 0x2b;
 	data[7] = 0x2b;
 
-	pdch = &bts->trx[trx_no].pdch[ts_no];
 	pdch->rcv_block(&data[0], sizeof(data), *fn, &meas);
 	osmo_fsm_inst_dispatch(ul_tbf->ul_ack_fsm.fi, TBF_UL_ACK_EV_SCHED_ACK, NULL);
 	tbf_ul_ack_create_rlcmac_msg(ul_tbf, pdch, *fn);
@@ -1537,17 +1515,15 @@
 }
 
 static gprs_rlcmac_ul_tbf *establish_ul_tbf_two_phase_puan_CRBB(struct gprs_rlcmac_bts *bts,
-	uint8_t ts_no, uint32_t tlli, uint32_t *fn, uint16_t qta,
+	struct gprs_rlcmac_pdch *pdch, uint32_t tlli, uint32_t *fn, uint16_t qta,
 	uint8_t ms_class, uint8_t egprs_ms_class)
 {
 	GprsMs *ms;
-	uint8_t trx_no = 0;
 	int tfi = 0;
 	gprs_rlcmac_ul_tbf *ul_tbf;
-	struct gprs_rlcmac_pdch *pdch = &bts->trx[trx_no].pdch[ts_no];
 
 	/* check the TBF */
-	ul_tbf = bts_ul_tbf_by_tfi(bts, tfi, trx_no, ts_no);
+	ul_tbf = bts_ul_tbf_by_tfi(bts, tfi, pdch->trx->trx_no, pdch->ts_no);
 	OSMO_ASSERT(ul_tbf);
 	OSMO_ASSERT(ul_tbf->ta() == qta / 4);
 
@@ -1605,7 +1581,6 @@
 	data[6] = 0x2b;
 	data[7] = 0x2b;
 
-	pdch = &bts->trx[trx_no].pdch[ts_no];
 	pdch->rcv_block(&data[0], sizeof(data), *fn, &meas);
 
 	request_dl_rlc_block(ul_tbf, fn);
@@ -1621,26 +1596,24 @@
 	return ul_tbf;
 }
 static gprs_rlcmac_ul_tbf *establish_ul_tbf_two_phase(struct gprs_rlcmac_bts *bts,
-	uint8_t ts_no, uint32_t tlli, uint32_t *fn, uint16_t qta,
+	struct gprs_rlcmac_pdch *pdch, uint32_t tlli, uint32_t *fn, uint16_t qta,
 	uint8_t ms_class, uint8_t egprs_ms_class)
 {
 	GprsMs *ms;
 	uint32_t rach_fn = *fn - 51;
 	uint32_t sba_fn = *fn + 52;
-	uint8_t trx_no = 0;
 	int tfi = 0;
 	gprs_rlcmac_ul_tbf *ul_tbf;
-	struct gprs_rlcmac_pdch *pdch;
 	RlcMacUplink_t ulreq = {0};
 
 	/* needed to set last_rts_fn in the PDCH object */
-	request_dl_rlc_block(bts, trx_no, ts_no, fn);
+	request_dl_rlc_block(bts, pdch, fn);
 
 	/* simulate RACH, sends an Immediate Assignment Uplink on the AGCH */
 	bts_handle_rach(bts, 0x73, rach_fn, qta);
 
 	/* get next free TFI */
-	tfi = bts_tfi_find_free(bts, GPRS_RLCMAC_UL_TBF, &trx_no, -1);
+	tfi = bts_tfi_find_free(bts, GPRS_RLCMAC_UL_TBF, &pdch->trx->trx_no, -1);
 
 	/* fake a resource request */
 	ulreq.u.MESSAGE_TYPE = MT_PACKET_RESOURCE_REQUEST;
@@ -1667,10 +1640,10 @@
 			EGPRS_multislot_class = ms_class;
 	}
 
-	send_ul_mac_block(bts, trx_no, ts_no, &ulreq, sba_fn);
+	send_ul_mac_block(bts, pdch, &ulreq, sba_fn);
 
 	/* check the TBF */
-	ul_tbf = bts_ul_tbf_by_tfi(bts, tfi, trx_no, ts_no);
+	ul_tbf = bts_ul_tbf_by_tfi(bts, tfi, pdch->trx->trx_no, pdch->ts_no);
 	OSMO_ASSERT(ul_tbf != NULL);
 	OSMO_ASSERT(ul_tbf->ta() == qta / 4);
 
@@ -1690,7 +1663,6 @@
 		uint8_t(1), /* BSN:7, E:1 */
 	};
 
-	pdch = &bts->trx[trx_no].pdch[ts_no];
 	pdch->rcv_block(&data_msg[0], sizeof(data_msg), *fn, &meas);
 
 	ms = bts_ms_by_tlli(bts, tlli, GSM_RESERVED_TMSI);
@@ -1756,6 +1728,7 @@
 {
 	the_pcu = prepare_pcu();
 	struct gprs_rlcmac_bts *bts = bts_alloc(the_pcu, 0);
+	struct gprs_rlcmac_pdch *pdch;
 	int ts_no = 7;
 	uint32_t fn = DUMMY_FN; /* 17,25,9 */
 	uint32_t tlli = 0xf1223344;
@@ -1766,8 +1739,9 @@
 	fprintf(stderr, "=== start %s ===\n", __func__);
 
 	setup_bts(bts, ts_no);
+	pdch = &bts->trx[0].pdch[ts_no];
 
-	ul_tbf = establish_ul_tbf_single_phase(bts, ts_no, tlli, &fn, qta);
+	ul_tbf = establish_ul_tbf_single_phase(bts, pdch, tlli, &fn, qta);
 
 	print_ta_tlli(ul_tbf, true);
 	send_dl_data(bts, tlli, imsi, (const uint8_t *)"TEST", 4);
@@ -1780,6 +1754,7 @@
 {
 	the_pcu = prepare_pcu();
 	struct gprs_rlcmac_bts *bts = bts_alloc(the_pcu, 0);
+	struct gprs_rlcmac_pdch *pdch;
 	int ts_no = 7;
 	uint32_t fn = DUMMY_FN; /* 17,25,9 */
 	uint32_t tlli = 0xf1223344;
@@ -1790,12 +1765,13 @@
 	fprintf(stderr, "=== start %s ===\n", __func__);
 
 	setup_bts(bts, ts_no);
+	pdch = &bts->trx[0].pdch[ts_no];
 
-	ul_tbf = establish_ul_tbf_single_phase(bts, ts_no, tlli, &fn, qta);
+	ul_tbf = establish_ul_tbf_single_phase(bts, pdch, tlli, &fn, qta);
 
 	print_ta_tlli(ul_tbf, true);
 	/* PCU sends CTRL ACK/NCK with FINAL_ACK=1, hence TBF is not in state FINISHED */
-	request_dl_rlc_block(bts, ul_tbf->trx->trx_no, ts_no, &fn);
+	request_dl_rlc_block(bts, pdch, &fn);
 	OSMO_ASSERT(ul_tbf->state_is(TBF_ST_FINISHED));
 	/* Now data is sent but no DL TBF is created because MS is not reachable for DL Assignment */
 	send_dl_data(bts, tlli, imsi, (const uint8_t *)"TEST", 4);
@@ -1813,6 +1789,7 @@
 	the_pcu = prepare_pcu();
 	struct gprs_rlcmac_bts *bts = bts_alloc(the_pcu, 0);
 	int ts_no = 7;
+	struct gprs_rlcmac_pdch *pdch;
 	uint32_t fn = 2654218;
 	uint16_t qta = 31;
 	uint32_t tlli = 0xf1223344;
@@ -1830,10 +1807,11 @@
 	bts->initial_mcs_dl = 9;
 	the_pcu->vty.ws_base = 128;
 	the_pcu->vty.ws_pdch = 64;
+	pdch = &bts->trx[0].pdch[ts_no];
 
-	ul_tbf = establish_ul_tbf(bts, ts_no, tlli, &fn, qta, ms_class, egprs_ms_class);
+	ul_tbf = establish_ul_tbf(bts, pdch, tlli, &fn, qta, ms_class, egprs_ms_class);
 	/* Function to generate URBB with no length */
-	ul_tbf = establish_ul_tbf_two_phase_puan_URBB_no_length(bts, ts_no, tlli, &fn,
+	ul_tbf = establish_ul_tbf_two_phase_puan_URBB_no_length(bts, pdch, tlli, &fn,
 		qta, ms_class, egprs_ms_class, ul_tbf);
 
 	print_ta_tlli(ul_tbf, true);
@@ -1841,7 +1819,7 @@
 
 	static_cast<gprs_rlc_ul_window *>(ul_tbf->window())->reset_state();
 	/* Function to generate URBB with length */
-	ul_tbf = establish_ul_tbf_two_phase_puan_URBB_with_length(bts, ts_no, tlli, &fn,
+	ul_tbf = establish_ul_tbf_two_phase_puan_URBB_with_length(bts, pdch, tlli, &fn,
 		qta, ms_class, egprs_ms_class, ul_tbf);
 
 	print_ta_tlli(ul_tbf, true);
@@ -1851,7 +1829,7 @@
 	/* Function to generate CRBB */
 	the_pcu->vty.ws_base = 128;
 	the_pcu->vty.ws_pdch = 64;
-	ul_tbf = establish_ul_tbf_two_phase_puan_CRBB(bts, ts_no, tlli, &fn,
+	ul_tbf = establish_ul_tbf_two_phase_puan_CRBB(bts, pdch, tlli, &fn,
 		qta, ms_class, egprs_ms_class);
 
 	print_ta_tlli(ul_tbf, true);
@@ -1953,8 +1931,8 @@
 
 	setup_bts(bts, ts_no, 4);
 
-	ul_tbf = establish_ul_tbf_two_phase(bts, ts_no, tlli, &fn, qta,
-		ms_class, 0);
+	ul_tbf = establish_ul_tbf_two_phase(bts, &bts->trx[0].pdch[ts_no],
+					    tlli, &fn, qta, ms_class, 0);
 
 	print_ta_tlli(ul_tbf, true);
 	send_dl_data(bts, tlli, imsi, (const uint8_t *)"TEST", 4);
@@ -1973,6 +1951,7 @@
 {
 	the_pcu = prepare_pcu();
 	struct gprs_rlcmac_bts *bts = bts_alloc(the_pcu, 0);
+	struct gprs_rlcmac_pdch *pdch;
 	int ts_no = 7;
 	uint32_t fn = 2654218;
 	uint16_t qta = 31;
@@ -1987,8 +1966,9 @@
 	fprintf(stderr, "=== start %s ===\n", __func__);
 
 	setup_bts(bts, ts_no, 4);
+	pdch = &bts->trx[0].pdch[ts_no];
 
-	ul_tbf = establish_ul_tbf_two_phase(bts, ts_no, tlli1, &fn, qta,
+	ul_tbf = establish_ul_tbf_two_phase(bts, pdch, tlli1, &fn, qta,
 		ms_class, 0);
 
 	ms1 = ul_tbf->ms();
@@ -2015,7 +1995,7 @@
 	fn = fn_add_blocks(fn, 1);
 
 	/* Now establish a new TBF for the RA UPDATE COMPLETE (new TLLI) */
-	ul_tbf = establish_ul_tbf_two_phase(bts, ts_no, tlli2, &fn, qta,
+	ul_tbf = establish_ul_tbf_two_phase(bts, pdch, tlli2, &fn, qta,
 		ms_class, 0);
 
 	ms2 = ul_tbf->ms();
@@ -2046,6 +2026,7 @@
 {
 	the_pcu = prepare_pcu();
 	struct gprs_rlcmac_bts *bts = bts_alloc(the_pcu, 0);
+	struct gprs_rlcmac_pdch *pdch;
 	int ts_no = 7;
 	uint32_t fn = 2654218;
 	uint16_t qta = 31;
@@ -2059,8 +2040,9 @@
 	fprintf(stderr, "=== start %s ===\n", __func__);
 
 	setup_bts(bts, ts_no, 1);
+	pdch = &bts->trx[0].pdch[ts_no];
 
-	ul_tbf = establish_ul_tbf_two_phase(bts, ts_no, tlli1, &fn, qta,
+	ul_tbf = establish_ul_tbf_two_phase(bts, pdch, tlli1, &fn, qta,
 		ms_class, 0);
 
 	ms1 = ul_tbf->ms();
@@ -2080,7 +2062,7 @@
 	OSMO_ASSERT(ms1 == ms);
 
 	/* Now establish a new UL TBF, this will consume one LLC packet */
-	ul_tbf = establish_ul_tbf_two_phase(bts, ts_no, tlli1, &fn, qta,
+	ul_tbf = establish_ul_tbf_two_phase(bts, pdch, tlli1, &fn, qta,
 		ms_class, 0);
 
 	ms2 = ul_tbf->ms();
@@ -2107,6 +2089,7 @@
 {
 	the_pcu = prepare_pcu();
 	struct gprs_rlcmac_bts *bts = bts_alloc(the_pcu, 0);
+	struct gprs_rlcmac_pdch *pdch;
 	int ts_no = 7;
 	uint32_t fn = 2654218;
 	uint16_t qta = 31;
@@ -2120,8 +2103,9 @@
 	fprintf(stderr, "=== start %s ===\n", __func__);
 
 	setup_bts(bts, ts_no, 1);
+	pdch = &bts->trx[0].pdch[ts_no];
 
-	ul_tbf = establish_ul_tbf_two_phase(bts, ts_no, tlli1, &fn, qta,
+	ul_tbf = establish_ul_tbf_two_phase(bts, pdch, tlli1, &fn, qta,
 		ms_class, 0);
 
 	ms1 = ul_tbf->ms();
@@ -2141,7 +2125,7 @@
 	OSMO_ASSERT(ms1 == ms);
 
 	/* Now establish a new UL TBF */
-	ul_tbf = establish_ul_tbf_single_phase(bts, ts_no, tlli1, &fn, qta);
+	ul_tbf = establish_ul_tbf_single_phase(bts, pdch, tlli1, &fn, qta);
 
 	ms2 = ul_tbf->ms();
 	print_ms(ms2, false);
@@ -2167,6 +2151,7 @@
 {
 	the_pcu = prepare_pcu();
 	struct gprs_rlcmac_bts *bts = bts_alloc(the_pcu, 0);
+	struct gprs_rlcmac_pdch *pdch;
 	int ts_no = 7;
 	uint32_t fn = 2654218;
 	uint16_t qta = 31;
@@ -2182,8 +2167,9 @@
 	fprintf(stderr, "=== start %s ===\n", __func__);
 
 	setup_bts(bts, ts_no, 1);
+	pdch = &bts->trx[0].pdch[ts_no];
 
-	ul_tbf = establish_ul_tbf_two_phase(bts, ts_no, tlli1, &fn, qta,
+	ul_tbf = establish_ul_tbf_two_phase(bts, pdch, tlli1, &fn, qta,
 		ms_class, 0);
 
 	ms1 = ul_tbf->ms();
@@ -2238,7 +2224,7 @@
 	ack->DOWNLINK_TFI = dl_tbf1->tfi();
 	ack->Ack_Nack_Description.FINAL_ACK_INDICATION = 1;
 
-	send_ul_mac_block(bts, 0, dl_tbf1->control_ts, &ulreq, get_poll_fn(dl_tbf1, dl_tbf1->control_ts));
+	send_ul_mac_block(bts, dl_tbf1->control_ts, &ulreq, get_poll_fn(dl_tbf1, dl_tbf1->control_ts));
 
 	OSMO_ASSERT(dl_tbf1->state_is(TBF_ST_WAIT_RELEASE));
 
@@ -2421,6 +2407,7 @@
 {
 	the_pcu = prepare_pcu();
 	struct gprs_rlcmac_bts *bts = bts_alloc(the_pcu, 0);
+	struct gprs_rlcmac_pdch *pdch;
 	int ts_no = 7;
 	uint32_t fn = 2654218;
 	uint16_t qta = 31;
@@ -2437,8 +2424,9 @@
 
 	setup_bts(bts, ts_no, 4);
 	bts->initial_mcs_dl = 9;
+	pdch = &bts->trx[0].pdch[ts_no];
 
-	ul_tbf = puan_urbb_len_issue(bts, ts_no, tlli, &fn, qta,
+	ul_tbf = puan_urbb_len_issue(bts, pdch, tlli, &fn, qta,
 		ms_class, egprs_ms_class);
 
 	print_ta_tlli(ul_tbf, true);
@@ -2449,16 +2437,14 @@
 }
 
 static gprs_rlcmac_ul_tbf *tbf_li_decoding(struct gprs_rlcmac_bts *bts,
-	uint8_t ts_no, uint32_t tlli, uint32_t *fn, uint16_t qta,
+	struct gprs_rlcmac_pdch *pdch, uint32_t tlli, uint32_t *fn, uint16_t qta,
 	uint8_t ms_class, uint8_t egprs_ms_class)
 {
 	GprsMs *ms;
 	uint32_t rach_fn = *fn - 51;
 	uint32_t sba_fn = *fn + 52;
-	uint8_t trx_no = 0;
 	int tfi = 0;
 	gprs_rlcmac_ul_tbf *ul_tbf;
-	struct gprs_rlcmac_pdch *pdch;
 	RlcMacUplink_t ulreq = {0};
 	struct gprs_rlc_ul_header_egprs_3 *egprs3  = NULL;
 	Packet_Resource_Request_t *presreq = NULL;
@@ -2466,7 +2452,7 @@
 	Multislot_capability_t *pmultislotcap = NULL;
 
 	/* needed to set last_rts_fn in the PDCH object */
-	request_dl_rlc_block(bts, trx_no, ts_no, fn);
+	request_dl_rlc_block(bts, pdch, fn);
 
 	/*
 	 * simulate RACH, this sends an Immediate
@@ -2475,7 +2461,7 @@
 	bts_handle_rach(bts, 0x73, rach_fn, qta);
 
 	/* get next free TFI */
-	tfi = bts_tfi_find_free(bts, GPRS_RLCMAC_UL_TBF, &trx_no, -1);
+	tfi = bts_tfi_find_free(bts, GPRS_RLCMAC_UL_TBF, &pdch->trx->trx_no, -1);
 
 	/* fake a resource request */
 	ulreq.u.MESSAGE_TYPE = MT_PACKET_RESOURCE_REQUEST;
@@ -2498,10 +2484,10 @@
 		pmultislotcap->EGPRS_multislot_class = ms_class;
 	}
 
-	send_ul_mac_block(bts, trx_no, ts_no, &ulreq, sba_fn);
+	send_ul_mac_block(bts, pdch, &ulreq, sba_fn);
 
 	/* check the TBF */
-	ul_tbf = bts_ul_tbf_by_tfi(bts, tfi, trx_no, ts_no);
+	ul_tbf = bts_ul_tbf_by_tfi(bts, tfi, pdch->trx->trx_no, pdch->ts_no);
 	OSMO_ASSERT(ul_tbf);
 	OSMO_ASSERT(ul_tbf->ta() == qta / 4);
 
@@ -2516,8 +2502,6 @@
 
 	uint8_t data_msg[49] = {0};
 
-	pdch = &bts->trx[trx_no].pdch[ts_no];
-
 	ms = bts_ms_by_tlli(bts, tlli, GSM_RESERVED_TMSI);
 	OSMO_ASSERT(ms != NULL);
 	OSMO_ASSERT(ms_ta(ms) == qta/4);
@@ -2560,6 +2544,7 @@
 {
 	the_pcu = prepare_pcu();
 	struct gprs_rlcmac_bts *bts = bts_alloc(the_pcu, 0);
+	struct gprs_rlcmac_pdch *pdch;
 	int ts_no = 7;
 	uint32_t fn = 2654218;
 	uint16_t qta = 31;
@@ -2576,8 +2561,9 @@
 
 	setup_bts(bts, ts_no, 4);
 	bts->initial_mcs_dl = 9;
+	pdch = &bts->trx[0].pdch[ts_no];
 
-	ul_tbf = tbf_li_decoding(bts, ts_no, tlli, &fn, qta,
+	ul_tbf = tbf_li_decoding(bts, pdch, tlli, &fn, qta,
 		ms_class, egprs_ms_class);
 
 	print_ta_tlli(ul_tbf, true);
@@ -2687,6 +2673,7 @@
 {
 	the_pcu = prepare_pcu();
 	struct gprs_rlcmac_bts *bts = bts_alloc(the_pcu, 0);
+	struct gprs_rlcmac_pdch *pdch;
 	int ts_no = 7;
 	uint32_t fn = 2654218;
 	uint16_t qta = 31;
@@ -2703,8 +2690,9 @@
 
 	setup_bts(bts, ts_no, 4);
 	bts->initial_mcs_dl = 9;
+	pdch = &bts->trx[0].pdch[ts_no];
 
-	ul_tbf = establish_ul_tbf_two_phase_spb(bts, ts_no, tlli, &fn, qta,
+	ul_tbf = establish_ul_tbf_two_phase_spb(bts, pdch, tlli, &fn, qta,
 		ms_class, egprs_ms_class);
 
 	print_ta_tlli(ul_tbf, true);
@@ -2718,6 +2706,7 @@
 {
 	the_pcu = prepare_pcu();
 	struct gprs_rlcmac_bts *bts = bts_alloc(the_pcu, 0);
+	struct gprs_rlcmac_pdch *pdch;
 	int ts_no = 7;
 	uint32_t fn = 2654218;
 	uint16_t qta = 31;
@@ -2734,8 +2723,9 @@
 
 	setup_bts(bts, ts_no, 4);
 	bts->initial_mcs_dl = 9;
+	pdch = &bts->trx[0].pdch[ts_no];
 
-	ul_tbf = establish_ul_tbf_two_phase(bts, ts_no, tlli, &fn, qta,
+	ul_tbf = establish_ul_tbf_two_phase(bts, pdch, tlli, &fn, qta,
 		ms_class, egprs_ms_class);
 
 	print_ta_tlli(ul_tbf, true);
@@ -2874,7 +2864,7 @@
 	} while(0)
 
 #define MAKE_ACKED(m, tbf, fn, cs, check_unacked) do {			\
-		m = tbf->create_dl_acked_block(fn, tbf->control_ts);	\
+		m = tbf->create_dl_acked_block(fn, tbf->control_ts->ts_no);	\
 		OSMO_ASSERT(m);						\
 		if (check_unacked)					\
 			CHECK_UNACKED(tbf, cs, 0);			\
@@ -2949,7 +2939,7 @@
 
 	NACK(dl_tbf, 0);
 
-	msg = dl_tbf->create_dl_acked_block(fn, dl_tbf->control_ts);
+	msg = dl_tbf->create_dl_acked_block(fn, dl_tbf->control_ts->ts_no);
 	egprs2 = (struct gprs_rlc_dl_header_egprs_2 *) msg->data;
 
 	/* Table 10.4.8a.3.1 of 44.060 */
@@ -3225,6 +3215,7 @@
 {
 	the_pcu = prepare_pcu();
 	struct gprs_rlcmac_bts *bts = bts_alloc(the_pcu, 0);
+	struct gprs_rlcmac_pdch *pdch;
 	uint32_t fn = 2654218;
 	int ts_no = 7;
 	uint8_t trx_no = 0;
@@ -3235,21 +3226,21 @@
 	fprintf(stderr, "=== start %s ===\n", __func__);
 
 	setup_bts(bts, ts_no, 4);
+	pdch = &bts->trx[trx_no].pdch[ts_no];
 	OSMO_ASSERT(osmo_tdef_set(the_pcu->T_defs, -2000, 0, OSMO_TDEF_MS) == 0);
 
 	int rc = 0;
 
 	ms = bts_alloc_ms(bts, 0, 0);
 	ms_set_tlli(ms, tlli);
-	ul_tbf = ms_new_ul_tbf_rejected_pacch(ms, &bts->trx[trx_no].pdch[ts_no]);
+	ul_tbf = ms_new_ul_tbf_rejected_pacch(ms, pdch);
 
 	OSMO_ASSERT(ul_tbf != 0);
 
 	/* trigger packet access reject */
 	uint8_t bn = fn2bn(fn);
 
-	rc = gprs_rlcmac_rcv_rts_block(bts,
-		trx_no, ts_no, fn, bn);
+	rc = gprs_rlcmac_rcv_rts_block(bts, pdch->trx->trx_no, pdch->ts_no, fn, bn);
 
 	OSMO_ASSERT(rc == 0);
 	osmo_select_main(0);
@@ -3262,6 +3253,7 @@
 {
 	the_pcu = prepare_pcu();
 	struct gprs_rlcmac_bts *bts = bts_alloc(the_pcu, 0);
+	struct gprs_rlcmac_pdch *pdch;
 	uint32_t fn = 2654218;
 	uint16_t qta = 31;
 	int ts_no = 7;
@@ -3279,6 +3271,7 @@
 	fprintf(stderr, "=== start %s ===\n", __func__);
 
 	setup_bts(bts, ts_no, 4);
+	pdch = &bts->trx[trx_no].pdch[ts_no];
 
 	int rc = 0;
 
@@ -3313,14 +3306,13 @@
 			pmultislotcap->EGPRS_multislot_class = egprs_ms_class;
 		}
 
-		send_ul_mac_block(bts, trx_no, ts_no, &ulreq, sba_fn);
+		send_ul_mac_block(bts, pdch, &ulreq, sba_fn);
 		sba_fn = fn_next_block(sba_fn);
 
 		/* trigger packet access reject */
 		uint8_t bn = fn2bn(fn);
 
-		rc = gprs_rlcmac_rcv_rts_block(bts,
-			trx_no, ts_no, fn, bn);
+		rc = gprs_rlcmac_rcv_rts_block(bts, pdch->trx->trx_no, pdch->ts_no, fn, bn);
 		OSMO_ASSERT(rc == 0);
 	}
 
diff --git a/tests/tbf/TbfTest.err b/tests/tbf/TbfTest.err
index 986f321..389567e 100644
--- a/tests/tbf/TbfTest.err
+++ b/tests/tbf/TbfTest.err
@@ -19,7 +19,7 @@
 - Skipping TS 3, because num TBFs 0 >= 0
 [DL] Assign downlink TS=2 TFI=0
 PDCH(bts=0,trx=0,ts=2) Attaching TBF(DL:STATE-NEW:GPRS), 1 TBFs, USFs = 00, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-0-0) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:GPRS)
 The MS object cannot fully confirm an unexpected TLLI: 0x00002342, partly confirmed
@@ -40,7 +40,7 @@
 - Skipping TS 7, because not enabled
 [UL] Assign uplink TS=2 TFI=0 USF=0
 PDCH(bts=0,trx=0,ts=2) Attaching TBF(UL:STATE-NEW:GPRS:TLLI-0x00002342), 1 TBFs, USFs = 01, TFIs = 00000001.
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00002342) Setting Control TS 2
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00002342) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00002342) Allocated: trx = 0, ul_slots = 04, dl_slots = 00
 MS(TLLI-0x00002342:TA-4:MSCLS-0-0:DL) Attaching UL TBF: TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0x00002342)
 Modifying MS object, TLLI: 0xffffffff -> 0x00002342, already confirmed partly
@@ -71,7 +71,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=0
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS), 1 TBFs, USFs = 00, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:GPRS)
 Modifying MS object, TLLI = 0xffffffff, TA 220 -> 0
@@ -137,7 +137,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=1
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:TLLI-0xffeeddcc), 2 TBFs, USFs = 00, TFIs = 00000003.
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xffeeddcc) Setting Control TS 4
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xffeeddcc) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xffeeddcc) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0xffeeddcc:TA-0:MSCLS-45-0:DL) Attaching DL TBF: TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xffeeddcc)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xffeeddcc) [DOWNLINK] START (PACCH)
@@ -184,7 +184,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=0
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS), 1 TBFs, USFs = 00, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:GPRS)
 Modifying MS object, TLLI = 0xffffffff, TA 220 -> 0
@@ -250,7 +250,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=1
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:TLLI-0xffeeddcc), 2 TBFs, USFs = 00, TFIs = 00000003.
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xffeeddcc) Setting Control TS 4
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xffeeddcc) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xffeeddcc) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TLLI-0xffeeddcc:TA-0:MSCLS-45-0:DL) Attaching DL TBF: TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xffeeddcc)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xffeeddcc) [DOWNLINK] START (PACCH)
@@ -297,7 +297,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=0
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS), 1 TBFs, USFs = 00, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:GPRS)
 Modifying MS object, TLLI = 0xffffffff, TA 220 -> 0
@@ -565,7 +565,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=0
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS), 1 TBFs, USFs = 00, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:GPRS)
 Modifying MS object, TLLI = 0xffffffff, TA 220 -> 0
@@ -597,7 +597,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=1
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS), 2 TBFs, USFs = 00, TFIs = 00000003.
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-1:STATE-NEW:GPRS)
 Modifying MS object, TLLI = 0xffffffff, TA 220 -> 0
@@ -658,7 +658,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=0
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000000:TLLI-0xc0000000), 1 TBFs, USFs = 00, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001000000000:TLLI-0xc0000000) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001000000000:TLLI-0xc0000000) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001000000000:TLLI-0xc0000000) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(IMSI-001001000000000:TLLI-0xc0000000:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001000000000:TLLI-0xc0000000)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001000000000:TLLI-0xc0000000) [DOWNLINK] START (PCH)
@@ -688,7 +688,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=1
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000001:TLLI-0xc0000001), 2 TBFs, USFs = 00, TFIs = 00000003.
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:IMSI-001001000000001:TLLI-0xc0000001) Setting Control TS 4
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:IMSI-001001000000001:TLLI-0xc0000001) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:IMSI-001001000000001:TLLI-0xc0000001) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(IMSI-001001000000001:TLLI-0xc0000001:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:IMSI-001001000000001:TLLI-0xc0000001)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:IMSI-001001000000001:TLLI-0xc0000001) [DOWNLINK] START (PCH)
@@ -718,7 +718,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=2
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000002:TLLI-0xc0000002), 3 TBFs, USFs = 00, TFIs = 00000007.
-TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:IMSI-001001000000002:TLLI-0xc0000002) Setting Control TS 4
+TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:IMSI-001001000000002:TLLI-0xc0000002) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:IMSI-001001000000002:TLLI-0xc0000002) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(IMSI-001001000000002:TLLI-0xc0000002:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:IMSI-001001000000002:TLLI-0xc0000002)
 TBF(DL:TFI-0-0-2:STATE-NEW:GPRS:IMSI-001001000000002:TLLI-0xc0000002) [DOWNLINK] START (PCH)
@@ -748,7 +748,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=3
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000003:TLLI-0xc0000003), 4 TBFs, USFs = 00, TFIs = 0000000f.
-TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:IMSI-001001000000003:TLLI-0xc0000003) Setting Control TS 4
+TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:IMSI-001001000000003:TLLI-0xc0000003) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:IMSI-001001000000003:TLLI-0xc0000003) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(IMSI-001001000000003:TLLI-0xc0000003:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:IMSI-001001000000003:TLLI-0xc0000003)
 TBF(DL:TFI-0-0-3:STATE-NEW:GPRS:IMSI-001001000000003:TLLI-0xc0000003) [DOWNLINK] START (PCH)
@@ -778,7 +778,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=4
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000004:TLLI-0xc0000004), 5 TBFs, USFs = 00, TFIs = 0000001f.
-TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:IMSI-001001000000004:TLLI-0xc0000004) Setting Control TS 4
+TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:IMSI-001001000000004:TLLI-0xc0000004) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:IMSI-001001000000004:TLLI-0xc0000004) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(IMSI-001001000000004:TLLI-0xc0000004:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:IMSI-001001000000004:TLLI-0xc0000004)
 TBF(DL:TFI-0-0-4:STATE-NEW:GPRS:IMSI-001001000000004:TLLI-0xc0000004) [DOWNLINK] START (PCH)
@@ -808,7 +808,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=5
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000005:TLLI-0xc0000005), 6 TBFs, USFs = 00, TFIs = 0000003f.
-TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:IMSI-001001000000005:TLLI-0xc0000005) Setting Control TS 4
+TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:IMSI-001001000000005:TLLI-0xc0000005) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:IMSI-001001000000005:TLLI-0xc0000005) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(IMSI-001001000000005:TLLI-0xc0000005:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:IMSI-001001000000005:TLLI-0xc0000005)
 TBF(DL:TFI-0-0-5:STATE-NEW:GPRS:IMSI-001001000000005:TLLI-0xc0000005) [DOWNLINK] START (PCH)
@@ -838,7 +838,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=6
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000006:TLLI-0xc0000006), 7 TBFs, USFs = 00, TFIs = 0000007f.
-TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:IMSI-001001000000006:TLLI-0xc0000006) Setting Control TS 4
+TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:IMSI-001001000000006:TLLI-0xc0000006) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:IMSI-001001000000006:TLLI-0xc0000006) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(IMSI-001001000000006:TLLI-0xc0000006:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:IMSI-001001000000006:TLLI-0xc0000006)
 TBF(DL:TFI-0-0-6:STATE-NEW:GPRS:IMSI-001001000000006:TLLI-0xc0000006) [DOWNLINK] START (PCH)
@@ -868,7 +868,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=7
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000007:TLLI-0xc0000007), 8 TBFs, USFs = 00, TFIs = 000000ff.
-TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:IMSI-001001000000007:TLLI-0xc0000007) Setting Control TS 4
+TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:IMSI-001001000000007:TLLI-0xc0000007) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:IMSI-001001000000007:TLLI-0xc0000007) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(IMSI-001001000000007:TLLI-0xc0000007:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:IMSI-001001000000007:TLLI-0xc0000007)
 TBF(DL:TFI-0-0-7:STATE-NEW:GPRS:IMSI-001001000000007:TLLI-0xc0000007) [DOWNLINK] START (PCH)
@@ -898,7 +898,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=8
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000008:TLLI-0xc0000008), 9 TBFs, USFs = 00, TFIs = 000001ff.
-TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:IMSI-001001000000008:TLLI-0xc0000008) Setting Control TS 4
+TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:IMSI-001001000000008:TLLI-0xc0000008) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:IMSI-001001000000008:TLLI-0xc0000008) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(IMSI-001001000000008:TLLI-0xc0000008:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:IMSI-001001000000008:TLLI-0xc0000008)
 TBF(DL:TFI-0-0-8:STATE-NEW:GPRS:IMSI-001001000000008:TLLI-0xc0000008) [DOWNLINK] START (PCH)
@@ -928,7 +928,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=9
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000009:TLLI-0xc0000009), 10 TBFs, USFs = 00, TFIs = 000003ff.
-TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:IMSI-001001000000009:TLLI-0xc0000009) Setting Control TS 4
+TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:IMSI-001001000000009:TLLI-0xc0000009) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:IMSI-001001000000009:TLLI-0xc0000009) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(IMSI-001001000000009:TLLI-0xc0000009:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:IMSI-001001000000009:TLLI-0xc0000009)
 TBF(DL:TFI-0-0-9:STATE-NEW:GPRS:IMSI-001001000000009:TLLI-0xc0000009) [DOWNLINK] START (PCH)
@@ -958,7 +958,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=10
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000010:TLLI-0xc000000a), 11 TBFs, USFs = 00, TFIs = 000007ff.
-TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:IMSI-001001000000010:TLLI-0xc000000a) Setting Control TS 4
+TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:IMSI-001001000000010:TLLI-0xc000000a) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:IMSI-001001000000010:TLLI-0xc000000a) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(IMSI-001001000000010:TLLI-0xc000000a:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:IMSI-001001000000010:TLLI-0xc000000a)
 TBF(DL:TFI-0-0-10:STATE-NEW:GPRS:IMSI-001001000000010:TLLI-0xc000000a) [DOWNLINK] START (PCH)
@@ -988,7 +988,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=11
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000011:TLLI-0xc000000b), 12 TBFs, USFs = 00, TFIs = 00000fff.
-TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:IMSI-001001000000011:TLLI-0xc000000b) Setting Control TS 4
+TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:IMSI-001001000000011:TLLI-0xc000000b) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:IMSI-001001000000011:TLLI-0xc000000b) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(IMSI-001001000000011:TLLI-0xc000000b:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:IMSI-001001000000011:TLLI-0xc000000b)
 TBF(DL:TFI-0-0-11:STATE-NEW:GPRS:IMSI-001001000000011:TLLI-0xc000000b) [DOWNLINK] START (PCH)
@@ -1018,7 +1018,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=12
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000012:TLLI-0xc000000c), 13 TBFs, USFs = 00, TFIs = 00001fff.
-TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:IMSI-001001000000012:TLLI-0xc000000c) Setting Control TS 4
+TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:IMSI-001001000000012:TLLI-0xc000000c) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:IMSI-001001000000012:TLLI-0xc000000c) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(IMSI-001001000000012:TLLI-0xc000000c:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:IMSI-001001000000012:TLLI-0xc000000c)
 TBF(DL:TFI-0-0-12:STATE-NEW:GPRS:IMSI-001001000000012:TLLI-0xc000000c) [DOWNLINK] START (PCH)
@@ -1048,7 +1048,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=13
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000013:TLLI-0xc000000d), 14 TBFs, USFs = 00, TFIs = 00003fff.
-TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:IMSI-001001000000013:TLLI-0xc000000d) Setting Control TS 4
+TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:IMSI-001001000000013:TLLI-0xc000000d) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:IMSI-001001000000013:TLLI-0xc000000d) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(IMSI-001001000000013:TLLI-0xc000000d:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:IMSI-001001000000013:TLLI-0xc000000d)
 TBF(DL:TFI-0-0-13:STATE-NEW:GPRS:IMSI-001001000000013:TLLI-0xc000000d) [DOWNLINK] START (PCH)
@@ -1078,7 +1078,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=14
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000014:TLLI-0xc000000e), 15 TBFs, USFs = 00, TFIs = 00007fff.
-TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:IMSI-001001000000014:TLLI-0xc000000e) Setting Control TS 4
+TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:IMSI-001001000000014:TLLI-0xc000000e) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:IMSI-001001000000014:TLLI-0xc000000e) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(IMSI-001001000000014:TLLI-0xc000000e:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:IMSI-001001000000014:TLLI-0xc000000e)
 TBF(DL:TFI-0-0-14:STATE-NEW:GPRS:IMSI-001001000000014:TLLI-0xc000000e) [DOWNLINK] START (PCH)
@@ -1108,7 +1108,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=15
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000015:TLLI-0xc000000f), 16 TBFs, USFs = 00, TFIs = 0000ffff.
-TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:IMSI-001001000000015:TLLI-0xc000000f) Setting Control TS 4
+TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:IMSI-001001000000015:TLLI-0xc000000f) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:IMSI-001001000000015:TLLI-0xc000000f) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(IMSI-001001000000015:TLLI-0xc000000f:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:IMSI-001001000000015:TLLI-0xc000000f)
 TBF(DL:TFI-0-0-15:STATE-NEW:GPRS:IMSI-001001000000015:TLLI-0xc000000f) [DOWNLINK] START (PCH)
@@ -1138,7 +1138,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=16
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000016:TLLI-0xc0000010), 17 TBFs, USFs = 00, TFIs = 0001ffff.
-TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:IMSI-001001000000016:TLLI-0xc0000010) Setting Control TS 4
+TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:IMSI-001001000000016:TLLI-0xc0000010) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:IMSI-001001000000016:TLLI-0xc0000010) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(IMSI-001001000000016:TLLI-0xc0000010:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:IMSI-001001000000016:TLLI-0xc0000010)
 TBF(DL:TFI-0-0-16:STATE-NEW:GPRS:IMSI-001001000000016:TLLI-0xc0000010) [DOWNLINK] START (PCH)
@@ -1168,7 +1168,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=17
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000017:TLLI-0xc0000011), 18 TBFs, USFs = 00, TFIs = 0003ffff.
-TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:IMSI-001001000000017:TLLI-0xc0000011) Setting Control TS 4
+TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:IMSI-001001000000017:TLLI-0xc0000011) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:IMSI-001001000000017:TLLI-0xc0000011) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(IMSI-001001000000017:TLLI-0xc0000011:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:IMSI-001001000000017:TLLI-0xc0000011)
 TBF(DL:TFI-0-0-17:STATE-NEW:GPRS:IMSI-001001000000017:TLLI-0xc0000011) [DOWNLINK] START (PCH)
@@ -1198,7 +1198,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=18
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000018:TLLI-0xc0000012), 19 TBFs, USFs = 00, TFIs = 0007ffff.
-TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:IMSI-001001000000018:TLLI-0xc0000012) Setting Control TS 4
+TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:IMSI-001001000000018:TLLI-0xc0000012) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:IMSI-001001000000018:TLLI-0xc0000012) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(IMSI-001001000000018:TLLI-0xc0000012:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:IMSI-001001000000018:TLLI-0xc0000012)
 TBF(DL:TFI-0-0-18:STATE-NEW:GPRS:IMSI-001001000000018:TLLI-0xc0000012) [DOWNLINK] START (PCH)
@@ -1228,7 +1228,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=19
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000019:TLLI-0xc0000013), 20 TBFs, USFs = 00, TFIs = 000fffff.
-TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:IMSI-001001000000019:TLLI-0xc0000013) Setting Control TS 4
+TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:IMSI-001001000000019:TLLI-0xc0000013) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:IMSI-001001000000019:TLLI-0xc0000013) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(IMSI-001001000000019:TLLI-0xc0000013:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:IMSI-001001000000019:TLLI-0xc0000013)
 TBF(DL:TFI-0-0-19:STATE-NEW:GPRS:IMSI-001001000000019:TLLI-0xc0000013) [DOWNLINK] START (PCH)
@@ -1258,7 +1258,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=20
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000020:TLLI-0xc0000014), 21 TBFs, USFs = 00, TFIs = 001fffff.
-TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:IMSI-001001000000020:TLLI-0xc0000014) Setting Control TS 4
+TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:IMSI-001001000000020:TLLI-0xc0000014) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:IMSI-001001000000020:TLLI-0xc0000014) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(IMSI-001001000000020:TLLI-0xc0000014:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:IMSI-001001000000020:TLLI-0xc0000014)
 TBF(DL:TFI-0-0-20:STATE-NEW:GPRS:IMSI-001001000000020:TLLI-0xc0000014) [DOWNLINK] START (PCH)
@@ -1288,7 +1288,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=21
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000021:TLLI-0xc0000015), 22 TBFs, USFs = 00, TFIs = 003fffff.
-TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:IMSI-001001000000021:TLLI-0xc0000015) Setting Control TS 4
+TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:IMSI-001001000000021:TLLI-0xc0000015) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:IMSI-001001000000021:TLLI-0xc0000015) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(IMSI-001001000000021:TLLI-0xc0000015:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:IMSI-001001000000021:TLLI-0xc0000015)
 TBF(DL:TFI-0-0-21:STATE-NEW:GPRS:IMSI-001001000000021:TLLI-0xc0000015) [DOWNLINK] START (PCH)
@@ -1318,7 +1318,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=22
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000022:TLLI-0xc0000016), 23 TBFs, USFs = 00, TFIs = 007fffff.
-TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:IMSI-001001000000022:TLLI-0xc0000016) Setting Control TS 4
+TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:IMSI-001001000000022:TLLI-0xc0000016) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:IMSI-001001000000022:TLLI-0xc0000016) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(IMSI-001001000000022:TLLI-0xc0000016:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:IMSI-001001000000022:TLLI-0xc0000016)
 TBF(DL:TFI-0-0-22:STATE-NEW:GPRS:IMSI-001001000000022:TLLI-0xc0000016) [DOWNLINK] START (PCH)
@@ -1348,7 +1348,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=23
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000023:TLLI-0xc0000017), 24 TBFs, USFs = 00, TFIs = 00ffffff.
-TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:IMSI-001001000000023:TLLI-0xc0000017) Setting Control TS 4
+TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:IMSI-001001000000023:TLLI-0xc0000017) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:IMSI-001001000000023:TLLI-0xc0000017) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(IMSI-001001000000023:TLLI-0xc0000017:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:IMSI-001001000000023:TLLI-0xc0000017)
 TBF(DL:TFI-0-0-23:STATE-NEW:GPRS:IMSI-001001000000023:TLLI-0xc0000017) [DOWNLINK] START (PCH)
@@ -1378,7 +1378,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=24
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000024:TLLI-0xc0000018), 25 TBFs, USFs = 00, TFIs = 01ffffff.
-TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:IMSI-001001000000024:TLLI-0xc0000018) Setting Control TS 4
+TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:IMSI-001001000000024:TLLI-0xc0000018) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:IMSI-001001000000024:TLLI-0xc0000018) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(IMSI-001001000000024:TLLI-0xc0000018:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:IMSI-001001000000024:TLLI-0xc0000018)
 TBF(DL:TFI-0-0-24:STATE-NEW:GPRS:IMSI-001001000000024:TLLI-0xc0000018) [DOWNLINK] START (PCH)
@@ -1408,7 +1408,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=25
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000025:TLLI-0xc0000019), 26 TBFs, USFs = 00, TFIs = 03ffffff.
-TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:IMSI-001001000000025:TLLI-0xc0000019) Setting Control TS 4
+TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:IMSI-001001000000025:TLLI-0xc0000019) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:IMSI-001001000000025:TLLI-0xc0000019) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(IMSI-001001000000025:TLLI-0xc0000019:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:IMSI-001001000000025:TLLI-0xc0000019)
 TBF(DL:TFI-0-0-25:STATE-NEW:GPRS:IMSI-001001000000025:TLLI-0xc0000019) [DOWNLINK] START (PCH)
@@ -1438,7 +1438,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=26
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000026:TLLI-0xc000001a), 27 TBFs, USFs = 00, TFIs = 07ffffff.
-TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:IMSI-001001000000026:TLLI-0xc000001a) Setting Control TS 4
+TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:IMSI-001001000000026:TLLI-0xc000001a) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:IMSI-001001000000026:TLLI-0xc000001a) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(IMSI-001001000000026:TLLI-0xc000001a:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:IMSI-001001000000026:TLLI-0xc000001a)
 TBF(DL:TFI-0-0-26:STATE-NEW:GPRS:IMSI-001001000000026:TLLI-0xc000001a) [DOWNLINK] START (PCH)
@@ -1468,7 +1468,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=27
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000027:TLLI-0xc000001b), 28 TBFs, USFs = 00, TFIs = 0fffffff.
-TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:IMSI-001001000000027:TLLI-0xc000001b) Setting Control TS 4
+TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:IMSI-001001000000027:TLLI-0xc000001b) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:IMSI-001001000000027:TLLI-0xc000001b) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(IMSI-001001000000027:TLLI-0xc000001b:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:IMSI-001001000000027:TLLI-0xc000001b)
 TBF(DL:TFI-0-0-27:STATE-NEW:GPRS:IMSI-001001000000027:TLLI-0xc000001b) [DOWNLINK] START (PCH)
@@ -1498,7 +1498,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=28
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000028:TLLI-0xc000001c), 29 TBFs, USFs = 00, TFIs = 1fffffff.
-TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:IMSI-001001000000028:TLLI-0xc000001c) Setting Control TS 4
+TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:IMSI-001001000000028:TLLI-0xc000001c) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:IMSI-001001000000028:TLLI-0xc000001c) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(IMSI-001001000000028:TLLI-0xc000001c:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:IMSI-001001000000028:TLLI-0xc000001c)
 TBF(DL:TFI-0-0-28:STATE-NEW:GPRS:IMSI-001001000000028:TLLI-0xc000001c) [DOWNLINK] START (PCH)
@@ -1528,7 +1528,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=29
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000029:TLLI-0xc000001d), 30 TBFs, USFs = 00, TFIs = 3fffffff.
-TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:IMSI-001001000000029:TLLI-0xc000001d) Setting Control TS 4
+TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:IMSI-001001000000029:TLLI-0xc000001d) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:IMSI-001001000000029:TLLI-0xc000001d) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(IMSI-001001000000029:TLLI-0xc000001d:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:IMSI-001001000000029:TLLI-0xc000001d)
 TBF(DL:TFI-0-0-29:STATE-NEW:GPRS:IMSI-001001000000029:TLLI-0xc000001d) [DOWNLINK] START (PCH)
@@ -1558,7 +1558,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=30
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000030:TLLI-0xc000001e), 31 TBFs, USFs = 00, TFIs = 7fffffff.
-TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:IMSI-001001000000030:TLLI-0xc000001e) Setting Control TS 4
+TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:IMSI-001001000000030:TLLI-0xc000001e) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:IMSI-001001000000030:TLLI-0xc000001e) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(IMSI-001001000000030:TLLI-0xc000001e:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:IMSI-001001000000030:TLLI-0xc000001e)
 TBF(DL:TFI-0-0-30:STATE-NEW:GPRS:IMSI-001001000000030:TLLI-0xc000001e) [DOWNLINK] START (PCH)
@@ -1588,7 +1588,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=31
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000000031:TLLI-0xc000001f), 32 TBFs, USFs = 00, TFIs = ffffffff.
-TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:IMSI-001001000000031:TLLI-0xc000001f) Setting Control TS 4
+TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:IMSI-001001000000031:TLLI-0xc000001f) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:IMSI-001001000000031:TLLI-0xc000001f) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(IMSI-001001000000031:TLLI-0xc000001f:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:IMSI-001001000000031:TLLI-0xc000001f)
 TBF(DL:TFI-0-0-31:STATE-NEW:GPRS:IMSI-001001000000031:TLLI-0xc000001f) [DOWNLINK] START (PCH)
@@ -1703,7 +1703,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=0
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000123456:TLLI-0xc0123456), 1 TBFs, USFs = 00, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001000123456:TLLI-0xc0123456) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001000123456:TLLI-0xc0123456) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001000123456:TLLI-0xc0123456) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(IMSI-001001000123456:TLLI-0xc0123456:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001000123456:TLLI-0xc0123456)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001000123456:TLLI-0xc0123456) [DOWNLINK] START (PCH)
@@ -1739,7 +1739,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=0
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001000123456:TLLI-0xc0123456), 1 TBFs, USFs = 00, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001000123456:TLLI-0xc0123456) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001000123456:TLLI-0xc0123456) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001000123456:TLLI-0xc0123456) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(IMSI-001001000123456:TLLI-0xc0123456:TA-0:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001000123456:TLLI-0xc0123456)
 MS(IMSI-001001000123456:TLLI-0xc0123456:TA-0:MSCLS-45-0:DL) Cancel scheduled MS release
@@ -1786,7 +1786,7 @@
 TBF(DL:TFI-0-0-0:STATE-FINISHED:GPRS:IMSI-001001000123456:TLLI-0xc0123456) Copying 1 RLC blocks, 1 BSNs
 TBF(DL:TFI-0-0-0:STATE-FINISHED:GPRS:IMSI-001001000123456:TLLI-0xc0123456) Copying data unit 0 (BSN 2)
 TBF(DL:TFI-0-0-0:STATE-FINISHED:GPRS:IMSI-001001000123456:TLLI-0xc0123456) Scheduling Ack/Nack polling, because it was requested explicitly (e.g. first final block sent).
-TBF(DL:TFI-0-0-0:STATE-FINISHED:GPRS:IMSI-001001000123456:TLLI-0xc0123456) Polling cannot be scheduled in this TS 7 (first control TS 4)
+TBF(DL:TFI-0-0-0:STATE-FINISHED:GPRS:IMSI-001001000123456:TLLI-0xc0123456) Polling cannot be scheduled in this TS 7 (control TS PDCH(bts=0,trx=0,ts=4))
 TBF(DL:TFI-0-0-0:STATE-FINISHED:GPRS:IMSI-001001000123456:TLLI-0xc0123456) msg block (BSN 2, CS-1): 07 01 04 4d 03 03 03 03 03 03 03 03 03 03 03 03 03 03 03 03 03 03 03 
 MSG = 07 01 04 4d 03 03 03 03 03 03 03 03 03 03 03 03 03 03 03 03 03 03 03 
 === end test_tbf_dl_llc_loss ===
@@ -1814,7 +1814,7 @@
 - Skipping TS 6, because not enabled
 [UL] Assign uplink TS=7 TFI=0 USF=0
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:GPRS), 1 TBFs, USFs = 01, TFIs = 00000001.
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Attaching UL TBF: TBF(UL:TFI-0-0-0:STATE-NEW:GPRS)
 UL_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NEW}: Received Event ASSIGN_ADD_CCCH
@@ -1876,7 +1876,7 @@
 - Skipping TS 6, because not enabled
 [UL] Assign uplink TS=7 TFI=0 USF=0
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:GPRS), 1 TBFs, USFs = 01, TFIs = 00000001.
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Attaching UL TBF: TBF(UL:TFI-0-0-0:STATE-NEW:GPRS)
 UL_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NEW}: Received Event ASSIGN_ADD_CCCH
@@ -1951,7 +1951,7 @@
 - Skipping TS 6, because not enabled
 [DL] Assign downlink TS=7 TFI=0
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 00, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(IMSI-0011223344:TLLI-0xf1223344:TA-7:MSCLS-0-0) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) [DOWNLINK] START (PCH)
@@ -1995,14 +1995,14 @@
 - Skipping TS 6, because not enabled
 [UL] Assign uplink TS=7 TFI=0 USF=0
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:GPRS:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001.
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TLLI-0xf1223344:TA-7:MSCLS-1-0) Attaching UL TBF: TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344)
 UL_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344){NEW}: Received Event ASSIGN_ADD_PACCH
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344) set ass. type PACCH [prev CCCH:0, PACCH:0]
 UL_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344){NEW}: state_chg to ASSIGN
 TBF(UL:TFI-0-0-0:STATE-ASSIGN:GPRS:TLLI-0xf1223344) Starting timer X2001 [assignment (PACCH)] with 2 sec. 0 microsec
-TBF(UL:TFI-0-0-0:STATE-ASSIGN:GPRS:TLLI-0xf1223344) change control TS 7 -> 7 until assignment is complete.
+TBF(UL:TFI-0-0-0:STATE-ASSIGN:GPRS:TLLI-0xf1223344) Change control TS PDCH(bts=0,trx=0,ts=7) -> PDCH(bts=0,trx=0,ts=7) until assignment is complete.
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344){NONE}: Received Event SCHED_ASS
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344){NONE}: state_chg to SEND_ASS
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344){SEND_ASS}: Received Event CREATE_RLCMAC_MSG
@@ -2052,7 +2052,7 @@
 - Skipping TS 6, because not enabled
 [DL] Assign downlink TS=7 TFI=0
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(IMSI-0011223344:TLLI-0xf1223344:TA-7:MSCLS-1-0:UL) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) [DOWNLINK] START (PACCH)
@@ -2098,14 +2098,14 @@
 - Skipping TS 6, because not enabled
 [UL] Assign uplink TS=7 TFI=0 USF=0
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:GPRS:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001.
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TLLI-0xf1223344:TA-7:MSCLS-1-0) Attaching UL TBF: TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344)
 UL_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344){NEW}: Received Event ASSIGN_ADD_PACCH
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344) set ass. type PACCH [prev CCCH:0, PACCH:0]
 UL_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344){NEW}: state_chg to ASSIGN
 TBF(UL:TFI-0-0-0:STATE-ASSIGN:GPRS:TLLI-0xf1223344) Starting timer X2001 [assignment (PACCH)] with 2 sec. 0 microsec
-TBF(UL:TFI-0-0-0:STATE-ASSIGN:GPRS:TLLI-0xf1223344) change control TS 7 -> 7 until assignment is complete.
+TBF(UL:TFI-0-0-0:STATE-ASSIGN:GPRS:TLLI-0xf1223344) Change control TS PDCH(bts=0,trx=0,ts=7) -> PDCH(bts=0,trx=0,ts=7) until assignment is complete.
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344){NONE}: Received Event SCHED_ASS
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344){NONE}: state_chg to SEND_ASS
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344){SEND_ASS}: Received Event CREATE_RLCMAC_MSG
@@ -2154,7 +2154,7 @@
 - Skipping TS 6, because not enabled
 [DL] Assign downlink TS=7 TFI=0
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(IMSI-0011223344:TLLI-0xf1223344:TA-7:MSCLS-1-0:UL) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) [DOWNLINK] START (PACCH)
@@ -2263,14 +2263,14 @@
 - Skipping TS 6, because not enabled
 [UL] Assign uplink TS=7 TFI=1 USF=1
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:GPRS:TLLI-0xf5667788), 2 TBFs, USFs = 03, TFIs = 00000003.
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xf5667788) Setting Control TS 7
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xf5667788) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xf5667788) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TLLI-0xf5667788:TA-7:MSCLS-1-0) Attaching UL TBF: TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xf5667788)
 UL_TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xf5667788){NEW}: Received Event ASSIGN_ADD_PACCH
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xf5667788) set ass. type PACCH [prev CCCH:0, PACCH:0]
 UL_TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xf5667788){NEW}: state_chg to ASSIGN
 TBF(UL:TFI-0-0-1:STATE-ASSIGN:GPRS:TLLI-0xf5667788) Starting timer X2001 [assignment (PACCH)] with 2 sec. 0 microsec
-TBF(UL:TFI-0-0-1:STATE-ASSIGN:GPRS:TLLI-0xf5667788) change control TS 7 -> 7 until assignment is complete.
+TBF(UL:TFI-0-0-1:STATE-ASSIGN:GPRS:TLLI-0xf5667788) Change control TS PDCH(bts=0,trx=0,ts=7) -> PDCH(bts=0,trx=0,ts=7) until assignment is complete.
 UL_ASS_TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xf5667788){NONE}: Received Event SCHED_ASS
 UL_ASS_TBF(UL:TFI-0-0-1:STATE-NEW:GPRS:TLLI-0xf5667788){NONE}: state_chg to SEND_ASS
 PDCH(bts=0,trx=0,ts=7) Expiring FN=2654348 but previous FN=2654301 is still reserved!
@@ -2368,14 +2368,14 @@
 - Skipping TS 6, because not enabled
 [UL] Assign uplink TS=7 TFI=0 USF=0
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:GPRS:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001.
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TLLI-0xf1223344:TA-7:MSCLS-1-0) Attaching UL TBF: TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344)
 UL_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344){NEW}: Received Event ASSIGN_ADD_PACCH
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344) set ass. type PACCH [prev CCCH:0, PACCH:0]
 UL_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344){NEW}: state_chg to ASSIGN
 TBF(UL:TFI-0-0-0:STATE-ASSIGN:GPRS:TLLI-0xf1223344) Starting timer X2001 [assignment (PACCH)] with 2 sec. 0 microsec
-TBF(UL:TFI-0-0-0:STATE-ASSIGN:GPRS:TLLI-0xf1223344) change control TS 7 -> 7 until assignment is complete.
+TBF(UL:TFI-0-0-0:STATE-ASSIGN:GPRS:TLLI-0xf1223344) Change control TS PDCH(bts=0,trx=0,ts=7) -> PDCH(bts=0,trx=0,ts=7) until assignment is complete.
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344){NONE}: Received Event SCHED_ASS
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344){NONE}: state_chg to SEND_ASS
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344){SEND_ASS}: Received Event CREATE_RLCMAC_MSG
@@ -2425,7 +2425,7 @@
 - Skipping TS 6, because not enabled
 [DL] Assign downlink TS=7 TFI=0
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(IMSI-0011223344:TLLI-0xf1223344:TA-7:MSCLS-1-0:UL) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) [DOWNLINK] START (PACCH)
@@ -2479,14 +2479,14 @@
 - Skipping TS 6, because not enabled
 [UL] Assign uplink TS=7 TFI=0 USF=0
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001.
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(IMSI-0011223344:TLLI-0xf1223344:TA-7:MSCLS-1-0) Attaching UL TBF: TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344)
 UL_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344){NEW}: Received Event ASSIGN_ADD_PACCH
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) set ass. type PACCH [prev CCCH:0, PACCH:0]
 UL_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344){NEW}: state_chg to ASSIGN
 TBF(UL:TFI-0-0-0:STATE-ASSIGN:GPRS:IMSI-0011223344:TLLI-0xf1223344) Starting timer X2001 [assignment (PACCH)] with 2 sec. 0 microsec
-TBF(UL:TFI-0-0-0:STATE-ASSIGN:GPRS:IMSI-0011223344:TLLI-0xf1223344) change control TS 7 -> 7 until assignment is complete.
+TBF(UL:TFI-0-0-0:STATE-ASSIGN:GPRS:IMSI-0011223344:TLLI-0xf1223344) Change control TS PDCH(bts=0,trx=0,ts=7) -> PDCH(bts=0,trx=0,ts=7) until assignment is complete.
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344){NONE}: Received Event SCHED_ASS
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344){NONE}: state_chg to SEND_ASS
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344){SEND_ASS}: Received Event CREATE_RLCMAC_MSG
@@ -2521,7 +2521,7 @@
 - Skipping TS 6, because not enabled
 [DL] Assign downlink TS=7 TFI=0
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(IMSI-0011223344:TLLI-0xf1223344:TA-7:MSCLS-1-0:UL) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) [DOWNLINK] START (PACCH)
@@ -2579,14 +2579,14 @@
 - Skipping TS 6, because not enabled
 [UL] Assign uplink TS=7 TFI=0 USF=0
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:GPRS:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001.
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TLLI-0xf1223344:TA-7:MSCLS-1-0) Attaching UL TBF: TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344)
 UL_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344){NEW}: Received Event ASSIGN_ADD_PACCH
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344) set ass. type PACCH [prev CCCH:0, PACCH:0]
 UL_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344){NEW}: state_chg to ASSIGN
 TBF(UL:TFI-0-0-0:STATE-ASSIGN:GPRS:TLLI-0xf1223344) Starting timer X2001 [assignment (PACCH)] with 2 sec. 0 microsec
-TBF(UL:TFI-0-0-0:STATE-ASSIGN:GPRS:TLLI-0xf1223344) change control TS 7 -> 7 until assignment is complete.
+TBF(UL:TFI-0-0-0:STATE-ASSIGN:GPRS:TLLI-0xf1223344) Change control TS PDCH(bts=0,trx=0,ts=7) -> PDCH(bts=0,trx=0,ts=7) until assignment is complete.
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344){NONE}: Received Event SCHED_ASS
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344){NONE}: state_chg to SEND_ASS
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344){SEND_ASS}: Received Event CREATE_RLCMAC_MSG
@@ -2636,7 +2636,7 @@
 - Skipping TS 6, because not enabled
 [DL] Assign downlink TS=7 TFI=0
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(IMSI-0011223344:TLLI-0xf1223344:TA-7:MSCLS-1-0:UL) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) [DOWNLINK] START (PACCH)
@@ -2677,7 +2677,7 @@
 - Skipping TS 6, because not enabled
 [UL] Assign uplink TS=7 TFI=0 USF=0
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:GPRS), 1 TBFs, USFs = 01, TFIs = 00000001.
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Attaching UL TBF: TBF(UL:TFI-0-0-0:STATE-NEW:GPRS)
 UL_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NEW}: Received Event ASSIGN_ADD_CCCH
@@ -2760,14 +2760,14 @@
 - Skipping TS 6, because not enabled
 [UL] Assign uplink TS=7 TFI=0 USF=0
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:GPRS:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001.
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TLLI-0xf1223344:TA-7:MSCLS-1-0) Attaching UL TBF: TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344)
 UL_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344){NEW}: Received Event ASSIGN_ADD_PACCH
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344) set ass. type PACCH [prev CCCH:0, PACCH:0]
 UL_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344){NEW}: state_chg to ASSIGN
 TBF(UL:TFI-0-0-0:STATE-ASSIGN:GPRS:TLLI-0xf1223344) Starting timer X2001 [assignment (PACCH)] with 2 sec. 0 microsec
-TBF(UL:TFI-0-0-0:STATE-ASSIGN:GPRS:TLLI-0xf1223344) change control TS 7 -> 7 until assignment is complete.
+TBF(UL:TFI-0-0-0:STATE-ASSIGN:GPRS:TLLI-0xf1223344) Change control TS PDCH(bts=0,trx=0,ts=7) -> PDCH(bts=0,trx=0,ts=7) until assignment is complete.
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344){NONE}: Received Event SCHED_ASS
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344){NONE}: state_chg to SEND_ASS
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS:TLLI-0xf1223344){SEND_ASS}: Received Event CREATE_RLCMAC_MSG
@@ -2817,7 +2817,7 @@
 - Skipping TS 6, because not enabled
 [DL] Assign downlink TS=7 TFI=0
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(IMSI-0011223344:TLLI-0xf1223344:TA-7:MSCLS-1-0:UL) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) [DOWNLINK] START (PACCH)
@@ -3542,7 +3542,7 @@
 - Skipping TS 6, because not enabled
 [DL] Assign downlink TS=7 TFI=1
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344), 2 TBFs, USFs = 01, TFIs = 00000003.
-TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS 7
+TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(IMSI-0011223344:TLLI-0xf1223344:TA-7:MSCLS-1-0:UL:DL) Attaching DL TBF: TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344)
 TBF(DL:TFI-0-0-1:STATE-NEW:GPRS:IMSI-0011223344:TLLI-0xf1223344) [DOWNLINK] START (PACCH)
@@ -3809,7 +3809,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=0
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:GPRS:IMSI-001001123456789:TLLI-0xc0006789), 1 TBFs, USFs = 00, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001123456789:TLLI-0xc0006789) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001123456789:TLLI-0xc0006789) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001123456789:TLLI-0xc0006789) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(IMSI-001001123456789:TLLI-0xc0006789:TA-220:MSCLS-45-0) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001123456789:TLLI-0xc0006789)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS:IMSI-001001123456789:TLLI-0xc0006789) [DOWNLINK] START (PCH)
@@ -3854,7 +3854,7 @@
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:GPRS), 1 TBFs, USFs = 00, TFIs = 00000001.
 - Assigning DL TS 5
 PDCH(bts=0,trx=0,ts=5) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:GPRS), 1 TBFs, USFs = 00, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 MS(TA-220:MSCLS-12-0) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:GPRS)
 DL TBF slots: 0x3c, N: 4, WS: 64
@@ -3898,7 +3898,7 @@
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001.
 - Assigning DL TS 5
 PDCH(bts=0,trx=0,ts=5) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 3c
 MS(TA-220:MSCLS-12-12) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) setting EGPRS DL window size to 384, base(128) slots(4) ws_pdch(64)
@@ -3950,7 +3950,7 @@
 - Skipping TS 6, because not enabled
 [UL] Assign uplink TS=7 TFI=0 USF=0
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:EGPRS:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001.
-TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TLLI-0xf1223344:TA-7:MSCLS-1-1) Attaching UL TBF: TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344)
 TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) setting EGPRS UL window size to 64, base(64) slots(1) ws_pdch(0)
@@ -3959,7 +3959,7 @@
 TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) set ass. type PACCH [prev CCCH:0, PACCH:0]
 UL_TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344){NEW}: state_chg to ASSIGN
 TBF(UL:TFI-0-0-0:STATE-ASSIGN:EGPRS:TLLI-0xf1223344) Starting timer X2001 [assignment (PACCH)] with 2 sec. 0 microsec
-TBF(UL:TFI-0-0-0:STATE-ASSIGN:EGPRS:TLLI-0xf1223344) change control TS 7 -> 7 until assignment is complete.
+TBF(UL:TFI-0-0-0:STATE-ASSIGN:EGPRS:TLLI-0xf1223344) Change control TS PDCH(bts=0,trx=0,ts=7) -> PDCH(bts=0,trx=0,ts=7) until assignment is complete.
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344){NONE}: Received Event SCHED_ASS
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344){NONE}: state_chg to SEND_ASS
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344){SEND_ASS}: Received Event CREATE_RLCMAC_MSG
@@ -4010,7 +4010,7 @@
 - Skipping TS 6, because not enabled
 [DL] Assign downlink TS=7 TFI=0
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(IMSI-0011223344:TLLI-0xf1223344:TA-7:MSCLS-1-1:UL) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) setting EGPRS DL window size to 64, base(64) slots(1) ws_pdch(0)
@@ -4061,7 +4061,7 @@
 - Skipping TS 6, because not enabled
 [UL] Assign uplink TS=7 TFI=0 USF=0
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:EGPRS:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001.
-TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TLLI-0xf1223344:TA-7:MSCLS-1-1) Attaching UL TBF: TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344)
 TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) setting EGPRS UL window size to 64, base(64) slots(1) ws_pdch(0)
@@ -4070,7 +4070,7 @@
 TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) set ass. type PACCH [prev CCCH:0, PACCH:0]
 UL_TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344){NEW}: state_chg to ASSIGN
 TBF(UL:TFI-0-0-0:STATE-ASSIGN:EGPRS:TLLI-0xf1223344) Starting timer X2001 [assignment (PACCH)] with 2 sec. 0 microsec
-TBF(UL:TFI-0-0-0:STATE-ASSIGN:EGPRS:TLLI-0xf1223344) change control TS 7 -> 7 until assignment is complete.
+TBF(UL:TFI-0-0-0:STATE-ASSIGN:EGPRS:TLLI-0xf1223344) Change control TS PDCH(bts=0,trx=0,ts=7) -> PDCH(bts=0,trx=0,ts=7) until assignment is complete.
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344){NONE}: Received Event SCHED_ASS
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344){NONE}: state_chg to SEND_ASS
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344){SEND_ASS}: Received Event CREATE_RLCMAC_MSG
@@ -4244,7 +4244,7 @@
 - Skipping TS 6, because not enabled
 [DL] Assign downlink TS=7 TFI=0
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(IMSI-0011223344:TLLI-0xf1223344:TA-7:MSCLS-1-1:UL) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) setting EGPRS DL window size to 64, base(64) slots(1) ws_pdch(0)
@@ -4284,7 +4284,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=0
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) setting EGPRS DL window size to 64, base(64) slots(1) ws_pdch(0)
@@ -4591,7 +4591,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=0
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) setting EGPRS DL window size to 64, base(64) slots(1) ws_pdch(0)
@@ -4848,7 +4848,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=0
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) setting EGPRS DL window size to 64, base(64) slots(1) ws_pdch(0)
@@ -5065,7 +5065,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=0
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) setting EGPRS DL window size to 64, base(64) slots(1) ws_pdch(0)
@@ -5266,7 +5266,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=0
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) setting EGPRS DL window size to 64, base(64) slots(1) ws_pdch(0)
@@ -5451,7 +5451,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=0
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) setting EGPRS DL window size to 64, base(64) slots(1) ws_pdch(0)
@@ -5612,7 +5612,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=0
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) setting EGPRS DL window size to 64, base(64) slots(1) ws_pdch(0)
@@ -5782,7 +5782,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=0
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) setting EGPRS DL window size to 64, base(64) slots(1) ws_pdch(0)
@@ -5943,7 +5943,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=0
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) setting EGPRS DL window size to 64, base(64) slots(1) ws_pdch(0)
@@ -6096,7 +6096,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=0
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) setting EGPRS DL window size to 64, base(64) slots(1) ws_pdch(0)
@@ -6167,7 +6167,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=0
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) setting EGPRS DL window size to 64, base(64) slots(1) ws_pdch(0)
@@ -6237,7 +6237,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=0
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) setting EGPRS DL window size to 64, base(64) slots(1) ws_pdch(0)
@@ -6307,7 +6307,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=0
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) setting EGPRS DL window size to 64, base(64) slots(1) ws_pdch(0)
@@ -6401,7 +6401,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=0
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) setting EGPRS DL window size to 64, base(64) slots(1) ws_pdch(0)
@@ -6494,7 +6494,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=0
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) setting EGPRS DL window size to 64, base(64) slots(1) ws_pdch(0)
@@ -6587,7 +6587,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=0
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) setting EGPRS DL window size to 64, base(64) slots(1) ws_pdch(0)
@@ -6683,7 +6683,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=0
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) setting EGPRS DL window size to 64, base(64) slots(1) ws_pdch(0)
@@ -6760,7 +6760,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=0
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) setting EGPRS DL window size to 64, base(64) slots(1) ws_pdch(0)
@@ -6837,7 +6837,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=0
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) setting EGPRS DL window size to 64, base(64) slots(1) ws_pdch(0)
@@ -6914,7 +6914,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=0
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) setting EGPRS DL window size to 64, base(64) slots(1) ws_pdch(0)
@@ -7012,7 +7012,7 @@
 - Skipping TS 6, because not enabled
 [UL] Assign uplink TS=7 TFI=0 USF=0
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:EGPRS:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001.
-TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TLLI-0xf1223344:TA-7:MSCLS-1-1) Attaching UL TBF: TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344)
 TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) setting EGPRS UL window size to 64, base(64) slots(1) ws_pdch(0)
@@ -7021,7 +7021,7 @@
 TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) set ass. type PACCH [prev CCCH:0, PACCH:0]
 UL_TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344){NEW}: state_chg to ASSIGN
 TBF(UL:TFI-0-0-0:STATE-ASSIGN:EGPRS:TLLI-0xf1223344) Starting timer X2001 [assignment (PACCH)] with 2 sec. 0 microsec
-TBF(UL:TFI-0-0-0:STATE-ASSIGN:EGPRS:TLLI-0xf1223344) change control TS 7 -> 7 until assignment is complete.
+TBF(UL:TFI-0-0-0:STATE-ASSIGN:EGPRS:TLLI-0xf1223344) Change control TS PDCH(bts=0,trx=0,ts=7) -> PDCH(bts=0,trx=0,ts=7) until assignment is complete.
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344){NONE}: Received Event SCHED_ASS
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344){NONE}: state_chg to SEND_ASS
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344){SEND_ASS}: Received Event CREATE_RLCMAC_MSG
@@ -7095,7 +7095,7 @@
 - Skipping TS 6, because not enabled
 [DL] Assign downlink TS=7 TFI=0
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(IMSI-0011223344:TLLI-0xf1223344:TA-7:MSCLS-1-1:UL) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) setting EGPRS DL window size to 64, base(64) slots(1) ws_pdch(0)
@@ -7140,7 +7140,7 @@
 - Reserved DL/UL slots: (TS=0)"...DC..."(TS=7)
 - Assigning DL TS 4
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) setting EGPRS DL window size to 192, base(128) slots(1) ws_pdch(64)
@@ -7216,7 +7216,7 @@
 - Skipping TS 6, because not enabled
 [UL] Assign uplink TS=7 TFI=0 USF=0
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:EGPRS:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001.
-TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TLLI-0xf1223344:TA-7:MSCLS-1-1) Attaching UL TBF: TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344)
 TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) setting EGPRS UL window size to 64, base(64) slots(1) ws_pdch(0)
@@ -7225,7 +7225,7 @@
 TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) set ass. type PACCH [prev CCCH:0, PACCH:0]
 UL_TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344){NEW}: state_chg to ASSIGN
 TBF(UL:TFI-0-0-0:STATE-ASSIGN:EGPRS:TLLI-0xf1223344) Starting timer X2001 [assignment (PACCH)] with 2 sec. 0 microsec
-TBF(UL:TFI-0-0-0:STATE-ASSIGN:EGPRS:TLLI-0xf1223344) change control TS 7 -> 7 until assignment is complete.
+TBF(UL:TFI-0-0-0:STATE-ASSIGN:EGPRS:TLLI-0xf1223344) Change control TS PDCH(bts=0,trx=0,ts=7) -> PDCH(bts=0,trx=0,ts=7) until assignment is complete.
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344){NONE}: Received Event SCHED_ASS
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344){NONE}: state_chg to SEND_ASS
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344){SEND_ASS}: Received Event CREATE_RLCMAC_MSG
@@ -7288,7 +7288,7 @@
 - Skipping TS 6, because not enabled
 [DL] Assign downlink TS=7 TFI=0
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(IMSI-0011223344:TLLI-0xf1223344:TA-7:MSCLS-1-1:UL) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) setting EGPRS DL window size to 64, base(64) slots(1) ws_pdch(0)
@@ -7327,7 +7327,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=0
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) setting EGPRS DL window size to 64, base(64) slots(1) ws_pdch(0)
@@ -7379,7 +7379,7 @@
 - Skipping TS 6, because not enabled
 [UL] Assign uplink TS=7 TFI=0 USF=0
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:GPRS), 1 TBFs, USFs = 01, TFIs = 00000001.
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Attaching UL TBF: TBF(UL:TFI-0-0-0:STATE-NEW:GPRS)
 UL_TBF(UL:TFI-0-0-0:STATE-NEW:GPRS){NEW}: Received Event ASSIGN_ADD_CCCH
@@ -7407,7 +7407,7 @@
 - Skipping TS 6, because not enabled
 [UL] Assign uplink TS=7 TFI=1 USF=1
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:GPRS), 2 TBFs, USFs = 03, TFIs = 00000003.
-TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-1:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Attaching UL TBF: TBF(UL:TFI-0-0-1:STATE-NEW:GPRS)
 UL_TBF(UL:TFI-0-0-1:STATE-NEW:GPRS){NEW}: Received Event ASSIGN_ADD_CCCH
@@ -7435,7 +7435,7 @@
 - Skipping TS 6, because not enabled
 [UL] Assign uplink TS=7 TFI=2 USF=2
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:GPRS), 3 TBFs, USFs = 07, TFIs = 00000007.
-TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-2:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Attaching UL TBF: TBF(UL:TFI-0-0-2:STATE-NEW:GPRS)
 UL_TBF(UL:TFI-0-0-2:STATE-NEW:GPRS){NEW}: Received Event ASSIGN_ADD_CCCH
@@ -7463,7 +7463,7 @@
 - Skipping TS 6, because not enabled
 [UL] Assign uplink TS=7 TFI=3 USF=3
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:GPRS), 4 TBFs, USFs = 0f, TFIs = 0000000f.
-TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-3:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Attaching UL TBF: TBF(UL:TFI-0-0-3:STATE-NEW:GPRS)
 UL_TBF(UL:TFI-0-0-3:STATE-NEW:GPRS){NEW}: Received Event ASSIGN_ADD_CCCH
@@ -7491,7 +7491,7 @@
 - Skipping TS 6, because not enabled
 [UL] Assign uplink TS=7 TFI=4 USF=4
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:GPRS), 5 TBFs, USFs = 1f, TFIs = 0000001f.
-TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-4:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Attaching UL TBF: TBF(UL:TFI-0-0-4:STATE-NEW:GPRS)
 UL_TBF(UL:TFI-0-0-4:STATE-NEW:GPRS){NEW}: Received Event ASSIGN_ADD_CCCH
@@ -7519,7 +7519,7 @@
 - Skipping TS 6, because not enabled
 [UL] Assign uplink TS=7 TFI=5 USF=5
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:GPRS), 6 TBFs, USFs = 3f, TFIs = 0000003f.
-TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-5:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Attaching UL TBF: TBF(UL:TFI-0-0-5:STATE-NEW:GPRS)
 UL_TBF(UL:TFI-0-0-5:STATE-NEW:GPRS){NEW}: Received Event ASSIGN_ADD_CCCH
@@ -7547,7 +7547,7 @@
 - Skipping TS 6, because not enabled
 [UL] Assign uplink TS=7 TFI=6 USF=6
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:GPRS), 7 TBFs, USFs = 7f, TFIs = 0000007f.
-TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS 7
+TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-6:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TA-220:MSCLS-0-0) Attaching UL TBF: TBF(UL:TFI-0-0-6:STATE-NEW:GPRS)
 UL_TBF(UL:TFI-0-0-6:STATE-NEW:GPRS){NEW}: Received Event ASSIGN_ADD_CCCH
@@ -7641,7 +7641,7 @@
 - Skipping TS 6, because not enabled
 [UL] Assign uplink TS=7 TFI=0 USF=0
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:EGPRS:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001.
-TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TLLI-0xf1223344:TA-7:MSCLS-1-1) Attaching UL TBF: TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344)
 TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) setting EGPRS UL window size to 192, base(128) slots(1) ws_pdch(64)
@@ -7650,7 +7650,7 @@
 TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344) set ass. type PACCH [prev CCCH:0, PACCH:0]
 UL_TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344){NEW}: state_chg to ASSIGN
 TBF(UL:TFI-0-0-0:STATE-ASSIGN:EGPRS:TLLI-0xf1223344) Starting timer X2001 [assignment (PACCH)] with 2 sec. 0 microsec
-TBF(UL:TFI-0-0-0:STATE-ASSIGN:EGPRS:TLLI-0xf1223344) change control TS 7 -> 7 until assignment is complete.
+TBF(UL:TFI-0-0-0:STATE-ASSIGN:EGPRS:TLLI-0xf1223344) Change control TS PDCH(bts=0,trx=0,ts=7) -> PDCH(bts=0,trx=0,ts=7) until assignment is complete.
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344){NONE}: Received Event SCHED_ASS
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344){NONE}: state_chg to SEND_ASS
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xf1223344){SEND_ASS}: Received Event CREATE_RLCMAC_MSG
@@ -8197,7 +8197,7 @@
 - Skipping TS 6, because not enabled
 [DL] Assign downlink TS=7 TFI=0
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(DL:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344), 1 TBFs, USFs = 01, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS 7
+TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) Allocated: trx = 0, ul_slots = 80, dl_slots = 80
 MS(IMSI-0011223344:TLLI-0xf1223344:TA-7:MSCLS-1-1:UL) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS:IMSI-0011223344:TLLI-0xf1223344) setting EGPRS DL window size to 192, base(128) slots(1) ws_pdch(64)
@@ -8895,7 +8895,7 @@
 - Skipping TS 7, because not enabled
 [DL] Assign downlink TS=4 TFI=0
 PDCH(bts=0,trx=0,ts=4) Attaching TBF(DL:STATE-NEW:EGPRS), 1 TBFs, USFs = 00, TFIs = 00000001.
-TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS 4
+TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 10
 MS(TA-220:MSCLS-11-11) Attaching DL TBF: TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS)
 TBF(DL:TFI-0-0-0:STATE-NEW:EGPRS) setting EGPRS DL window size to 64, base(64) slots(1) ws_pdch(0)
@@ -8982,7 +8982,7 @@
 - Skipping TS 6, because not enabled
 [UL] Assign uplink TS=7 TFI=0 USF=0
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:EGPRS:TLLI-0xffeeddcc), 1 TBFs, USFs = 01, TFIs = 00000001.
-TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xffeeddcc) Setting Control TS 7
+TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xffeeddcc) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xffeeddcc) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TLLI-0xffeeddcc:TA-7:MSCLS-11-11) Attaching UL TBF: TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xffeeddcc)
 TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xffeeddcc) setting EGPRS UL window size to 64, base(64) slots(1) ws_pdch(0)
@@ -8991,7 +8991,7 @@
 TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xffeeddcc) set ass. type PACCH [prev CCCH:0, PACCH:0]
 UL_TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xffeeddcc){NEW}: state_chg to ASSIGN
 TBF(UL:TFI-0-0-0:STATE-ASSIGN:EGPRS:TLLI-0xffeeddcc) Starting timer X2001 [assignment (PACCH)] with 2 sec. 0 microsec
-TBF(UL:TFI-0-0-0:STATE-ASSIGN:EGPRS:TLLI-0xffeeddcc) change control TS 7 -> 7 until assignment is complete.
+TBF(UL:TFI-0-0-0:STATE-ASSIGN:EGPRS:TLLI-0xffeeddcc) Change control TS PDCH(bts=0,trx=0,ts=7) -> PDCH(bts=0,trx=0,ts=7) until assignment is complete.
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xffeeddcc){NONE}: Received Event SCHED_ASS
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xffeeddcc){NONE}: state_chg to SEND_ASS
 UL_ASS_TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS:TLLI-0xffeeddcc){SEND_ASS}: Received Event CREATE_RLCMAC_MSG
@@ -9028,7 +9028,7 @@
 - Skipping TS 6, because not enabled
 [UL] Assign uplink TS=7 TFI=1 USF=1
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:EGPRS:TLLI-0xffeeddcd), 2 TBFs, USFs = 03, TFIs = 00000003.
-TBF(UL:TFI-0-0-1:STATE-NEW:EGPRS:TLLI-0xffeeddcd) Setting Control TS 7
+TBF(UL:TFI-0-0-1:STATE-NEW:EGPRS:TLLI-0xffeeddcd) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-1:STATE-NEW:EGPRS:TLLI-0xffeeddcd) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TLLI-0xffeeddcd:TA-7:MSCLS-11-11) Attaching UL TBF: TBF(UL:TFI-0-0-1:STATE-NEW:EGPRS:TLLI-0xffeeddcd)
 TBF(UL:TFI-0-0-1:STATE-NEW:EGPRS:TLLI-0xffeeddcd) setting EGPRS UL window size to 64, base(64) slots(1) ws_pdch(0)
@@ -9037,7 +9037,7 @@
 TBF(UL:TFI-0-0-1:STATE-NEW:EGPRS:TLLI-0xffeeddcd) set ass. type PACCH [prev CCCH:0, PACCH:0]
 UL_TBF(UL:TFI-0-0-1:STATE-NEW:EGPRS:TLLI-0xffeeddcd){NEW}: state_chg to ASSIGN
 TBF(UL:TFI-0-0-1:STATE-ASSIGN:EGPRS:TLLI-0xffeeddcd) Starting timer X2001 [assignment (PACCH)] with 2 sec. 0 microsec
-TBF(UL:TFI-0-0-1:STATE-ASSIGN:EGPRS:TLLI-0xffeeddcd) change control TS 7 -> 7 until assignment is complete.
+TBF(UL:TFI-0-0-1:STATE-ASSIGN:EGPRS:TLLI-0xffeeddcd) Change control TS PDCH(bts=0,trx=0,ts=7) -> PDCH(bts=0,trx=0,ts=7) until assignment is complete.
 UL_ASS_TBF(UL:TFI-0-0-1:STATE-NEW:EGPRS:TLLI-0xffeeddcd){NONE}: Received Event SCHED_ASS
 UL_ASS_TBF(UL:TFI-0-0-1:STATE-NEW:EGPRS:TLLI-0xffeeddcd){NONE}: state_chg to SEND_ASS
 PDCH(bts=0,trx=0,ts=7) Expiring FN=56 but previous FN=2654231 is still reserved!
@@ -9081,7 +9081,7 @@
 - Skipping TS 6, because not enabled
 [UL] Assign uplink TS=7 TFI=2 USF=2
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:EGPRS:TLLI-0xffeeddce), 3 TBFs, USFs = 07, TFIs = 00000007.
-TBF(UL:TFI-0-0-2:STATE-NEW:EGPRS:TLLI-0xffeeddce) Setting Control TS 7
+TBF(UL:TFI-0-0-2:STATE-NEW:EGPRS:TLLI-0xffeeddce) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-2:STATE-NEW:EGPRS:TLLI-0xffeeddce) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TLLI-0xffeeddce:TA-7:MSCLS-11-11) Attaching UL TBF: TBF(UL:TFI-0-0-2:STATE-NEW:EGPRS:TLLI-0xffeeddce)
 TBF(UL:TFI-0-0-2:STATE-NEW:EGPRS:TLLI-0xffeeddce) setting EGPRS UL window size to 64, base(64) slots(1) ws_pdch(0)
@@ -9090,7 +9090,7 @@
 TBF(UL:TFI-0-0-2:STATE-NEW:EGPRS:TLLI-0xffeeddce) set ass. type PACCH [prev CCCH:0, PACCH:0]
 UL_TBF(UL:TFI-0-0-2:STATE-NEW:EGPRS:TLLI-0xffeeddce){NEW}: state_chg to ASSIGN
 TBF(UL:TFI-0-0-2:STATE-ASSIGN:EGPRS:TLLI-0xffeeddce) Starting timer X2001 [assignment (PACCH)] with 2 sec. 0 microsec
-TBF(UL:TFI-0-0-2:STATE-ASSIGN:EGPRS:TLLI-0xffeeddce) change control TS 7 -> 7 until assignment is complete.
+TBF(UL:TFI-0-0-2:STATE-ASSIGN:EGPRS:TLLI-0xffeeddce) Change control TS PDCH(bts=0,trx=0,ts=7) -> PDCH(bts=0,trx=0,ts=7) until assignment is complete.
 UL_ASS_TBF(UL:TFI-0-0-2:STATE-NEW:EGPRS:TLLI-0xffeeddce){NONE}: Received Event SCHED_ASS
 UL_ASS_TBF(UL:TFI-0-0-2:STATE-NEW:EGPRS:TLLI-0xffeeddce){NONE}: state_chg to SEND_ASS
 PDCH(bts=0,trx=0,ts=7) Expiring FN=60 but previous FN=2654231 is still reserved!
@@ -9134,7 +9134,7 @@
 - Skipping TS 6, because not enabled
 [UL] Assign uplink TS=7 TFI=3 USF=3
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:EGPRS:TLLI-0xffeeddcf), 4 TBFs, USFs = 0f, TFIs = 0000000f.
-TBF(UL:TFI-0-0-3:STATE-NEW:EGPRS:TLLI-0xffeeddcf) Setting Control TS 7
+TBF(UL:TFI-0-0-3:STATE-NEW:EGPRS:TLLI-0xffeeddcf) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-3:STATE-NEW:EGPRS:TLLI-0xffeeddcf) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TLLI-0xffeeddcf:TA-7:MSCLS-11-11) Attaching UL TBF: TBF(UL:TFI-0-0-3:STATE-NEW:EGPRS:TLLI-0xffeeddcf)
 TBF(UL:TFI-0-0-3:STATE-NEW:EGPRS:TLLI-0xffeeddcf) setting EGPRS UL window size to 64, base(64) slots(1) ws_pdch(0)
@@ -9143,7 +9143,7 @@
 TBF(UL:TFI-0-0-3:STATE-NEW:EGPRS:TLLI-0xffeeddcf) set ass. type PACCH [prev CCCH:0, PACCH:0]
 UL_TBF(UL:TFI-0-0-3:STATE-NEW:EGPRS:TLLI-0xffeeddcf){NEW}: state_chg to ASSIGN
 TBF(UL:TFI-0-0-3:STATE-ASSIGN:EGPRS:TLLI-0xffeeddcf) Starting timer X2001 [assignment (PACCH)] with 2 sec. 0 microsec
-TBF(UL:TFI-0-0-3:STATE-ASSIGN:EGPRS:TLLI-0xffeeddcf) change control TS 7 -> 7 until assignment is complete.
+TBF(UL:TFI-0-0-3:STATE-ASSIGN:EGPRS:TLLI-0xffeeddcf) Change control TS PDCH(bts=0,trx=0,ts=7) -> PDCH(bts=0,trx=0,ts=7) until assignment is complete.
 UL_ASS_TBF(UL:TFI-0-0-3:STATE-NEW:EGPRS:TLLI-0xffeeddcf){NONE}: Received Event SCHED_ASS
 UL_ASS_TBF(UL:TFI-0-0-3:STATE-NEW:EGPRS:TLLI-0xffeeddcf){NONE}: state_chg to SEND_ASS
 PDCH(bts=0,trx=0,ts=7) Expiring FN=65 but previous FN=2654231 is still reserved!
@@ -9187,7 +9187,7 @@
 - Skipping TS 6, because not enabled
 [UL] Assign uplink TS=7 TFI=4 USF=4
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:EGPRS:TLLI-0xffeeddd0), 5 TBFs, USFs = 1f, TFIs = 0000001f.
-TBF(UL:TFI-0-0-4:STATE-NEW:EGPRS:TLLI-0xffeeddd0) Setting Control TS 7
+TBF(UL:TFI-0-0-4:STATE-NEW:EGPRS:TLLI-0xffeeddd0) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-4:STATE-NEW:EGPRS:TLLI-0xffeeddd0) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TLLI-0xffeeddd0:TA-7:MSCLS-11-11) Attaching UL TBF: TBF(UL:TFI-0-0-4:STATE-NEW:EGPRS:TLLI-0xffeeddd0)
 TBF(UL:TFI-0-0-4:STATE-NEW:EGPRS:TLLI-0xffeeddd0) setting EGPRS UL window size to 64, base(64) slots(1) ws_pdch(0)
@@ -9196,7 +9196,7 @@
 TBF(UL:TFI-0-0-4:STATE-NEW:EGPRS:TLLI-0xffeeddd0) set ass. type PACCH [prev CCCH:0, PACCH:0]
 UL_TBF(UL:TFI-0-0-4:STATE-NEW:EGPRS:TLLI-0xffeeddd0){NEW}: state_chg to ASSIGN
 TBF(UL:TFI-0-0-4:STATE-ASSIGN:EGPRS:TLLI-0xffeeddd0) Starting timer X2001 [assignment (PACCH)] with 2 sec. 0 microsec
-TBF(UL:TFI-0-0-4:STATE-ASSIGN:EGPRS:TLLI-0xffeeddd0) change control TS 7 -> 7 until assignment is complete.
+TBF(UL:TFI-0-0-4:STATE-ASSIGN:EGPRS:TLLI-0xffeeddd0) Change control TS PDCH(bts=0,trx=0,ts=7) -> PDCH(bts=0,trx=0,ts=7) until assignment is complete.
 UL_ASS_TBF(UL:TFI-0-0-4:STATE-NEW:EGPRS:TLLI-0xffeeddd0){NONE}: Received Event SCHED_ASS
 UL_ASS_TBF(UL:TFI-0-0-4:STATE-NEW:EGPRS:TLLI-0xffeeddd0){NONE}: state_chg to SEND_ASS
 PDCH(bts=0,trx=0,ts=7) Expiring FN=69 but previous FN=2654231 is still reserved!
@@ -9240,7 +9240,7 @@
 - Skipping TS 6, because not enabled
 [UL] Assign uplink TS=7 TFI=5 USF=5
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:EGPRS:TLLI-0xffeeddd1), 6 TBFs, USFs = 3f, TFIs = 0000003f.
-TBF(UL:TFI-0-0-5:STATE-NEW:EGPRS:TLLI-0xffeeddd1) Setting Control TS 7
+TBF(UL:TFI-0-0-5:STATE-NEW:EGPRS:TLLI-0xffeeddd1) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-5:STATE-NEW:EGPRS:TLLI-0xffeeddd1) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TLLI-0xffeeddd1:TA-7:MSCLS-11-11) Attaching UL TBF: TBF(UL:TFI-0-0-5:STATE-NEW:EGPRS:TLLI-0xffeeddd1)
 TBF(UL:TFI-0-0-5:STATE-NEW:EGPRS:TLLI-0xffeeddd1) setting EGPRS UL window size to 64, base(64) slots(1) ws_pdch(0)
@@ -9249,7 +9249,7 @@
 TBF(UL:TFI-0-0-5:STATE-NEW:EGPRS:TLLI-0xffeeddd1) set ass. type PACCH [prev CCCH:0, PACCH:0]
 UL_TBF(UL:TFI-0-0-5:STATE-NEW:EGPRS:TLLI-0xffeeddd1){NEW}: state_chg to ASSIGN
 TBF(UL:TFI-0-0-5:STATE-ASSIGN:EGPRS:TLLI-0xffeeddd1) Starting timer X2001 [assignment (PACCH)] with 2 sec. 0 microsec
-TBF(UL:TFI-0-0-5:STATE-ASSIGN:EGPRS:TLLI-0xffeeddd1) change control TS 7 -> 7 until assignment is complete.
+TBF(UL:TFI-0-0-5:STATE-ASSIGN:EGPRS:TLLI-0xffeeddd1) Change control TS PDCH(bts=0,trx=0,ts=7) -> PDCH(bts=0,trx=0,ts=7) until assignment is complete.
 UL_ASS_TBF(UL:TFI-0-0-5:STATE-NEW:EGPRS:TLLI-0xffeeddd1){NONE}: Received Event SCHED_ASS
 UL_ASS_TBF(UL:TFI-0-0-5:STATE-NEW:EGPRS:TLLI-0xffeeddd1){NONE}: state_chg to SEND_ASS
 PDCH(bts=0,trx=0,ts=7) Expiring FN=73 but previous FN=2654231 is still reserved!
@@ -9293,7 +9293,7 @@
 - Skipping TS 6, because not enabled
 [UL] Assign uplink TS=7 TFI=6 USF=6
 PDCH(bts=0,trx=0,ts=7) Attaching TBF(UL:STATE-NEW:EGPRS:TLLI-0xffeeddd2), 7 TBFs, USFs = 7f, TFIs = 0000007f.
-TBF(UL:TFI-0-0-6:STATE-NEW:EGPRS:TLLI-0xffeeddd2) Setting Control TS 7
+TBF(UL:TFI-0-0-6:STATE-NEW:EGPRS:TLLI-0xffeeddd2) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 TBF(UL:TFI-0-0-6:STATE-NEW:EGPRS:TLLI-0xffeeddd2) Allocated: trx = 0, ul_slots = 80, dl_slots = 00
 MS(TLLI-0xffeeddd2:TA-7:MSCLS-11-11) Attaching UL TBF: TBF(UL:TFI-0-0-6:STATE-NEW:EGPRS:TLLI-0xffeeddd2)
 TBF(UL:TFI-0-0-6:STATE-NEW:EGPRS:TLLI-0xffeeddd2) setting EGPRS UL window size to 64, base(64) slots(1) ws_pdch(0)
@@ -9302,7 +9302,7 @@
 TBF(UL:TFI-0-0-6:STATE-NEW:EGPRS:TLLI-0xffeeddd2) set ass. type PACCH [prev CCCH:0, PACCH:0]
 UL_TBF(UL:TFI-0-0-6:STATE-NEW:EGPRS:TLLI-0xffeeddd2){NEW}: state_chg to ASSIGN
 TBF(UL:TFI-0-0-6:STATE-ASSIGN:EGPRS:TLLI-0xffeeddd2) Starting timer X2001 [assignment (PACCH)] with 2 sec. 0 microsec
-TBF(UL:TFI-0-0-6:STATE-ASSIGN:EGPRS:TLLI-0xffeeddd2) change control TS 7 -> 7 until assignment is complete.
+TBF(UL:TFI-0-0-6:STATE-ASSIGN:EGPRS:TLLI-0xffeeddd2) Change control TS PDCH(bts=0,trx=0,ts=7) -> PDCH(bts=0,trx=0,ts=7) until assignment is complete.
 UL_ASS_TBF(UL:TFI-0-0-6:STATE-NEW:EGPRS:TLLI-0xffeeddd2){NONE}: Received Event SCHED_ASS
 UL_ASS_TBF(UL:TFI-0-0-6:STATE-NEW:EGPRS:TLLI-0xffeeddd2){NONE}: state_chg to SEND_ASS
 PDCH(bts=0,trx=0,ts=7) Expiring FN=78 but previous FN=2654231 is still reserved!
@@ -9356,7 +9356,7 @@
 DL_ASS_TBF{NONE}: Allocated
 UL_TBF{NEW}: Allocated
 UL_ACK_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0--1:STATE-NEW:GPRS:TLLI-0xffeeddd3) Setting Control TS 7
+TBF(UL:TFI-0-0--1:STATE-NEW:GPRS:TLLI-0xffeeddd3) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 MS(TLLI-0xffeeddd3:TA-7:MSCLS-11-11) Attaching UL TBF: TBF(UL:TFI-0-0--1:STATE-NEW:GPRS:TLLI-0xffeeddd3)
 UL_TBF(UL:TFI-0-0--1:STATE-NEW:GPRS:TLLI-0xffeeddd3){NEW}: Received Event ASSIGN_ADD_PACCH
 TBF(UL:TFI-0-0--1:STATE-NEW:GPRS:TLLI-0xffeeddd3) set ass. type PACCH [prev CCCH:0, PACCH:0]
@@ -9404,7 +9404,7 @@
 DL_ASS_TBF{NONE}: Allocated
 UL_TBF{NEW}: Allocated
 UL_ACK_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0--1:STATE-NEW:GPRS:TLLI-0xffeeddcc) Setting Control TS 7
+TBF(UL:TFI-0-0--1:STATE-NEW:GPRS:TLLI-0xffeeddcc) Setting Control TS PDCH(bts=0,trx=0,ts=7)
 MS(TLLI-0xffeeddcc:TA-220:MSCLS-0-0) Attaching UL TBF: TBF(UL:TFI-0-0--1:STATE-NEW:GPRS:TLLI-0xffeeddcc)
 UL_TBF(UL:TFI-0-0--1:STATE-NEW:GPRS:TLLI-0xffeeddcc){NEW}: Received Event ASSIGN_ADD_PACCH
 TBF(UL:TFI-0-0--1:STATE-NEW:GPRS:TLLI-0xffeeddcc) set ass. type PACCH [prev CCCH:0, PACCH:0]
diff --git a/tests/types/TypesTest.err b/tests/types/TypesTest.err
index 57b370b..569ced8 100644
--- a/tests/types/TypesTest.err
+++ b/tests/types/TypesTest.err
@@ -1,21 +1,21 @@
 MS(TA-220:MSCLS-1-0) Allocating DL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
-TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 2
+TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=2)
 TBF(DL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 04, dl_slots = 04
 MS(TA-220:MSCLS-1-0) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
 UL_TBF{NEW}: Allocated
 UL_ACK_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:GPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 MS(TA-220:MSCLS-1-1) Allocating UL TBF
 UL_ASS_TBF{NONE}: Allocated
 DL_ASS_TBF{NONE}: Allocated
 UL_TBF{NEW}: Allocated
 UL_ACK_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS 1
+TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=1)
 TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 02, dl_slots = 00
 TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS) setting EGPRS UL window size to 64, base(64) slots(1) ws_pdch(0)
 ############## test_egprs_ul_ack_nack
@@ -24,7 +24,7 @@
 DL_ASS_TBF{NONE}: Allocated
 UL_TBF{NEW}: Allocated
 UL_ACK_TBF{NONE}: Allocated
-TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS 4
+TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS) Setting Control TS PDCH(bts=0,trx=0,ts=4)
 TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS) Allocated: trx = 0, ul_slots = 10, dl_slots = 00
 TBF(UL:TFI-0-0-0:STATE-NEW:EGPRS) setting EGPRS UL window size to 64, base(64) slots(1) ws_pdch(0)
 ************** Test with empty window